Min SDK is now 24

This commit is contained in:
Benoit Marty 2024-06-24 17:34:58 +02:00
parent 2bf80fb0cc
commit 1cffa3d1fe
2 changed files with 2 additions and 1 deletions

View file

@ -63,6 +63,7 @@ object Versions {
val versionName = "$versionMajor.$versionMinor.$versionPatch"
const val compileSdk = 34
const val targetSdk = 33
// When updating the `minSdk`, make sure to update the value of `minSdkVersion` in the file `tools/release/release.sh`
const val minSdk = 24
val javaCompileVersion = JavaVersion.VERSION_17
val javaLanguageVersion: JavaLanguageVersion = JavaLanguageVersion.of(11)

View file

@ -73,7 +73,7 @@ if [ ${envError} == 1 ]; then
exit 1
fi
minSdkVersion=23
minSdkVersion=24
buildToolsVersion="35.0.0"
buildToolsPath="${androidHome}/build-tools/${buildToolsVersion}"