Introduce MIN_SDK_FOSS and MIN_SDK_ENTERPRISE const.
This commit is contained in:
parent
c54608da44
commit
7f449fef81
1 changed files with 3 additions and 1 deletions
|
|
@ -42,7 +42,9 @@ object Versions {
|
|||
const val TARGET_SDK = 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
|
||||
private const val MIN_SDK_FOSS = 24
|
||||
private const val MIN_SDK_ENTERPRISE = 26
|
||||
val minSdk = if (isEnterpriseBuild) MIN_SDK_ENTERPRISE else MIN_SDK_FOSS
|
||||
|
||||
private const val JAVA_VERSION = 21
|
||||
val javaVersion: JavaVersion = JavaVersion.toVersion(JAVA_VERSION)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue