diff options
author | fuzzard <fuzzard@kodi.tv> | 2024-01-13 13:20:51 +1000 |
---|---|---|
committer | fuzzard <fuzzard@kodi.tv> | 2024-01-13 13:26:12 +1000 |
commit | fdef39a321bdce2cb924882edaad4c52831a5b28 (patch) | |
tree | 05c89cf74f03a058a76352ed09585c92a1dc5b72 /cmake | |
parent | 5198ea50825e1f5adbd55b467eb3982fa8618766 (diff) |
[Android] Remove special versioning for Android arch types
With AAB bundles being the new requirement for Play store submissions, the bundle for
multiple architectures no longer requires a unique version for each architecture.
Remove this version increment for aarch64 from the build process.
Diffstat (limited to 'cmake')
-rw-r--r-- | cmake/scripts/android/Install.cmake | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/cmake/scripts/android/Install.cmake b/cmake/scripts/android/Install.cmake index 8816f8d1df..f88957cc9f 100644 --- a/cmake/scripts/android/Install.cmake +++ b/cmake/scripts/android/Install.cmake @@ -28,9 +28,6 @@ unset(APP_VERSION_CODE_LIST) math(EXPR APP_VERSION_CODE_ANDROID "(${major} * 100 + ${minor}) * 1000 + ${patch}") unset(major) unset(minor) -if(ARCH STREQUAL aarch64 AND patch LESS 999) - math(EXPR APP_VERSION_CODE_ANDROID "${APP_VERSION_CODE_ANDROID} + 1") -endif() unset(patch) set(package_files strings.xml |