Add first EnterpriseService.

This commit is contained in:
Benoit Marty 2024-06-12 18:53:28 +02:00 committed by Benoit Marty
parent bc6724923c
commit d43a8c8bea
11 changed files with 158 additions and 3 deletions

View file

@ -64,7 +64,7 @@ object Versions {
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 minSdk = if (isEnterpriseBuild) 26 else 24
val javaCompileVersion = JavaVersion.VERSION_17
val javaLanguageVersion: JavaLanguageVersion = JavaLanguageVersion.of(11)
}