Browse Source

Merge pull request #3149 from element-hq/feature/bma/targetSdk34

Set targetSDK to 34
pull/3171/head
Benoit Marty 2 months ago committed by GitHub
parent
commit
9bb1aeb17d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      plugins/src/main/kotlin/Versions.kt

2
plugins/src/main/kotlin/Versions.kt

@ -62,7 +62,7 @@ object Versions { @@ -62,7 +62,7 @@ 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 = 33
const val targetSdk = 34
// 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
val javaCompileVersion = JavaVersion.VERSION_17

Loading…
Cancel
Save