You've already forked TrickyStore
mirror of
https://github.com/5ec1cff/TrickyStore.git
synced 2025-09-06 06:37:07 +00:00
32 lines
673 B
Plaintext
32 lines
673 B
Plaintext
plugins {
|
|
alias(libs.plugins.jetbrains.kotlin.android)
|
|
alias(libs.plugins.agp.app)
|
|
}
|
|
|
|
android {
|
|
namespace = "io.github.a13e300.tricky_store"
|
|
compileSdk = 34
|
|
|
|
defaultConfig {
|
|
applicationId = "io.github.a13e300.tricky_store"
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
isMinifyEnabled = false
|
|
proguardFiles(
|
|
getDefaultProguardFile("proguard-android-optimize.txt"),
|
|
"proguard-rules.pro"
|
|
)
|
|
}
|
|
}
|
|
kotlinOptions {
|
|
jvmTarget = "17"
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compileOnly(project(":stub"))
|
|
compileOnly(libs.annotation)
|
|
implementation(libs.bcpkix.jdk15on)
|
|
} |