OpenEUICC/libs/hidden-apis-stub/build.gradle.kts
Peter Cai 50c7b4a3be refactor: Migrate to build.gradle.kts
...and rework the original "helper.gradle" into proper plugins. This
also allows the signing configuration code to be shared, and now
keystore.properties is no longer mandatory.
2024-01-09 21:01:20 -05:00

17 lines
294 B
Plaintext

plugins {
id("com.android.library")
}
android {
compileSdk = 31
namespace = "im.angry.hidden.apis"
}
java {
sourceCompatibility = JavaVersion.VERSION_1_7
targetCompatibility = JavaVersion.VERSION_1_7
}
dependencies {
implementation("org.jetbrains:annotations:15.0")
}