feat: in-app update check + one-tap update (v0.3.3)

This commit is contained in:
tkrmagid
2026-08-06 11:03:10 +09:00
parent 067170802a
commit b5f135f475
10 changed files with 330 additions and 2 deletions

View File

@@ -24,8 +24,8 @@ android {
applicationId = "kr.tkrmagid.easyappliance"
minSdk = 24
targetSdk = 35
versionCode = 5
versionName = "0.3.2"
versionCode = (project.findProperty("verCode") as String?)?.toInt() ?: 6
versionName = (project.findProperty("verName") as String?) ?: "0.3.3"
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
}
@@ -61,6 +61,7 @@ android {
}
buildFeatures {
compose = true
buildConfig = true
}
}