1.2.0 - UX Improvements

This commit is contained in:
2025-08-22 12:58:33 -06:00
parent 63c3fc86a0
commit c721b5550f
8 changed files with 563 additions and 198 deletions

View File

@@ -11,10 +11,10 @@ android {
defaultConfig {
applicationId = "com.atridad.magiccounter"
minSdk = 35
minSdk = 31
targetSdk = 36
versionCode = 2
versionName = "1.1.0"
versionName = "1.2.0"
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
}
@@ -28,13 +28,22 @@ android {
)
}
}
compileOptions {
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}
kotlinOptions {
jvmTarget = "17"
}
java {
toolchain {
languageVersion.set(JavaLanguageVersion.of(17))
}
}
buildFeatures {
compose = true
}