22 lines
449 B
Kotlin
22 lines
449 B
Kotlin
plugins {
|
|
id("com.android.application")
|
|
}
|
|
|
|
android {
|
|
namespace = "se.ajpanton.statusbartweak.harness"
|
|
compileSdk = 36
|
|
|
|
defaultConfig {
|
|
applicationId = "se.ajpanton.statusbartweak.harness"
|
|
minSdk = 26
|
|
targetSdk = 36
|
|
versionCode = 1
|
|
versionName = "1.0"
|
|
}
|
|
|
|
compileOptions {
|
|
sourceCompatibility = JavaVersion.VERSION_17
|
|
targetCompatibility = JavaVersion.VERSION_17
|
|
}
|
|
}
|