- We dont need the whole dev.rikka.hidden.stub library so just remove it and simplify dependencies. - We already have our own stub package so we can just include the missing stubs that we want directly in it. Signed-off-by: Dakkshesh <beakthoven@gmail.com>
37 lines
665 B
Kotlin
37 lines
665 B
Kotlin
/*
|
|
* Copyright 2025 Dakkshesh <beakthoven@gmail.com>
|
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
|
*/
|
|
|
|
plugins {
|
|
alias(libs.plugins.android.library)
|
|
}
|
|
|
|
|
|
android {
|
|
namespace = "io.github.beakthoven.stub"
|
|
compileSdk = 36
|
|
buildToolsVersion = "36.0.0"
|
|
defaultConfig {
|
|
minSdk = 29
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
isMinifyEnabled = false
|
|
}
|
|
}
|
|
|
|
lint {
|
|
checkReleaseBuilds = false
|
|
abortOnError = true
|
|
}
|
|
compileOptions {
|
|
sourceCompatibility = JavaVersion.VERSION_21
|
|
targetCompatibility = JavaVersion.VERSION_21
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compileOnly(libs.annotation)
|
|
} |