Compile and target API 35.

Tested OK on a API 35 emulator.
This commit is contained in:
Benoit Marty 2024-10-31 09:19:08 +01:00 committed by Benoit Marty
parent fa1e5e5ceb
commit 920c50cc3d
4 changed files with 5 additions and 3 deletions

View file

@ -52,8 +52,8 @@ private const val versionPatch = 3
object Versions {
val versionCode = 4_000_000 + versionMajor * 1_00_00 + versionMinor * 1_00 + versionPatch
val versionName = "$versionMajor.$versionMinor.$versionPatch"
const val compileSdk = 34
const val targetSdk = 34
const val compileSdk = 35
const val targetSdk = 35
// When updating the `minSdk`, make sure to update the value of `minSdkVersion` in the file `tools/release/release.sh`
val minSdk = if (isEnterpriseBuild) 26 else 24