mirror of
https://github.com/HighCapable/YukiHookAPI.git
synced 2025-12-08 14:14:05 +08:00
29 lines
752 B
Plaintext
29 lines
752 B
Plaintext
plugins {
|
|
alias(libs.plugins.android.library)
|
|
alias(libs.plugins.kotlin.android)
|
|
}
|
|
|
|
android {
|
|
namespace = gropify.project.groupName
|
|
compileSdk = gropify.project.android.compileSdk
|
|
|
|
defaultConfig {
|
|
minSdk = gropify.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(libs.androidx.annotation)
|
|
} |