修复一些列bug

This commit is contained in:
2026-08-01 21:44:59 +08:00
parent cc3f273872
commit 562ba8e603
26 changed files with 1181 additions and 1 deletions

38
android/app/build.gradle Normal file
View File

@@ -0,0 +1,38 @@
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 = 1
versionName = "1.0.0"
}
buildTypes {
release {
minifyEnabled = false
}
}
compileOptions {
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}
testOptions {
unitTests {
returnDefaultValues = true
}
}
}
dependencies {
testImplementation("junit:junit:4.13.2")
}