46 lines
912 B
Groovy
46 lines
912 B
Groovy
plugins {
|
|
id("com.android.application")
|
|
}
|
|
|
|
android {
|
|
namespace = "cn.nianxx.queue.display"
|
|
compileSdk = 36
|
|
buildToolsVersion = "36.1.0"
|
|
|
|
defaultConfig {
|
|
applicationId = "cn.nianxx.queue.display"
|
|
minSdk = 23
|
|
targetSdk = 36
|
|
versionCode = 9
|
|
versionName = "1.5.2"
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled = false
|
|
}
|
|
}
|
|
|
|
buildFeatures {
|
|
buildConfig = true
|
|
}
|
|
|
|
compileOptions {
|
|
sourceCompatibility = JavaVersion.VERSION_17
|
|
targetCompatibility = JavaVersion.VERSION_17
|
|
}
|
|
|
|
testOptions {
|
|
unitTests {
|
|
returnDefaultValues = true
|
|
includeAndroidResources = true
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
testImplementation("junit:junit:4.13.2")
|
|
testImplementation("org.json:json:20260522")
|
|
testImplementation("org.robolectric:robolectric:4.14.1")
|
|
}
|