Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Release test build to Android beta program
- Loading branch information
Showing
with
5 additions
and
2 deletions.
-
+2
−0
.gitignore
-
+1
−1
build/android/build.gradle
-
+2
−1
util/bump_version.sh
|
@@ -104,3 +104,5 @@ cmake_config.h |
|
|
cmake_config_githash.h |
|
|
CMakeDoxy* |
|
|
compile_commands.json |
|
|
*.apk |
|
|
*.zip |
|
@@ -4,7 +4,7 @@ project.ext.set("versionMajor", 5) // Version Major |
|
|
project.ext.set("versionMinor", 3) // Version Minor |
|
|
project.ext.set("versionPatch", 0) // Version Patch |
|
|
project.ext.set("versionExtra", "-dev") // Version Extra |
|
|
project.ext.set("versionCode", 26) // Android Version Code |
|
|
project.ext.set("versionCode", 28) // Android Version Code |
|
|
// NOTE: +2 after each release! |
|
|
// +1 for ARM and +1 for ARM64 APK's, because |
|
|
// each APK must have a larger `versionCode` than the previous |
|
|
|
@@ -90,7 +90,8 @@ RELEASE_VERSION="$VERSION_MAJOR.$VERSION_MINOR.$VERSION_PATCH" |
|
|
echo "Current Minetest version: $RELEASE_VERSION" |
|
|
echo "Current Android version code: $ANDROID_VERSION_CODE" |
|
|
|
|
|
NEW_ANDROID_VERSION_CODE=$(expr $ANDROID_VERSION_CODE + 1) |
|
|
# +1 for ARM and +1 for ARM64 APKs |
|
|
NEW_ANDROID_VERSION_CODE=$(expr $ANDROID_VERSION_CODE + 2) |
|
|
NEW_ANDROID_VERSION_CODE=$(prompt_for_number "Set android version code" $NEW_ANDROID_VERSION_CODE) |
|
|
|
|
|
echo |
|
|