Release v1.2.5

This commit is contained in:
Lei Nelissen
2022-05-18 22:29:57 +02:00
parent 1c659d7d90
commit a8d563f66d
6 changed files with 12 additions and 12 deletions

View File

@@ -138,8 +138,8 @@ android {
applicationId "com.jellyfinaudioplayer"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 8
versionName "1.2.4"
versionCode 9
versionName "1.2.5"
buildConfigField "boolean", "IS_NEW_ARCHITECTURE_ENABLED", isNewArchitectureEnabled().toString()
if (isNewArchitectureEnabled()) {
@@ -322,4 +322,4 @@ def isNewArchitectureEnabled() {
// - Invoke gradle with `-newArchEnabled=true`
// - Set an environment variable `ORG_GRADLE_PROJECT_newArchEnabled=true`
return project.hasProperty("newArchEnabled") && project.newArchEnabled == "true"
}
}