mirror of
https://github.com/HighCapable/YukiHookAPI.git
synced 2025-09-04 01:35:17 +08:00
29 lines
767 B
Plaintext
29 lines
767 B
Plaintext
plugins {
|
|
autowire(libs.plugins.android.library)
|
|
autowire(libs.plugins.kotlin.android)
|
|
}
|
|
|
|
android {
|
|
namespace = property.project.groupName
|
|
compileSdk = property.project.android.compileSdk
|
|
|
|
defaultConfig {
|
|
minSdk = property.project.android.minSdk
|
|
consumerProguardFiles("consumer-rules.pro")
|
|
}
|
|
buildTypes {
|
|
release {
|
|
isMinifyEnabled = false
|
|
proguardFiles(getDefaultProguardFile("proguard-android-optimize.txt"), "proguard-rules.pro")
|
|
}
|
|
}
|
|
compileOptions {
|
|
sourceCompatibility = JavaVersion.VERSION_17
|
|
targetCompatibility = JavaVersion.VERSION_17
|
|
}
|
|
lint { checkReleaseBuilds = false }
|
|
}
|
|
|
|
dependencies {
|
|
implementation(androidx.annotation.annotation)
|
|
} |