forked from Mirrorlandia_minetest/minetest
Release test build to Android beta program
This commit is contained in:
parent
ee6c499ff8
commit
3014e8b33b
2
.gitignore
vendored
2
.gitignore
vendored
@ -104,3 +104,5 @@ cmake_config.h
|
|||||||
cmake_config_githash.h
|
cmake_config_githash.h
|
||||||
CMakeDoxy*
|
CMakeDoxy*
|
||||||
compile_commands.json
|
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("versionMinor", 3) // Version Minor
|
||||||
project.ext.set("versionPatch", 0) // Version Patch
|
project.ext.set("versionPatch", 0) // Version Patch
|
||||||
project.ext.set("versionExtra", "-dev") // Version Extra
|
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!
|
// NOTE: +2 after each release!
|
||||||
// +1 for ARM and +1 for ARM64 APK's, because
|
// +1 for ARM and +1 for ARM64 APK's, because
|
||||||
// each APK must have a larger `versionCode` than the previous
|
// 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 Minetest version: $RELEASE_VERSION"
|
||||||
echo "Current Android version code: $ANDROID_VERSION_CODE"
|
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)
|
NEW_ANDROID_VERSION_CODE=$(prompt_for_number "Set android version code" $NEW_ANDROID_VERSION_CODE)
|
||||||
|
|
||||||
echo
|
echo
|
||||||
|
Loading…
Reference in New Issue
Block a user