Skip to content

Commit

Permalink
fix naming
Browse files Browse the repository at this point in the history
  • Loading branch information
niwla23 committed Mar 8, 2022
1 parent 2e956e2 commit e9847cf
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -191,6 +191,7 @@ android {
if (abi != null) { // null for the universal-debug, universal-release variants
output.versionCodeOverride =
versionCodes.get(abi) * 1048576 + defaultConfig.versionCode
output.outputFileName = "schulhack_v${defaultConfig.versionName}_${abi}_${variant.buildType.name}.apk"
}

}
Expand Down
5 changes: 3 additions & 2 deletions tools/renameAPKs.sh
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
read -p "Version Name (format: major-minor-patch): " SCHULHACK_VERSION
rename app schulhack-$SCHULHACK_VERSION *.apk
read -p "Version Name (format: major.minor.patch): " SCHULHACK_VERSION
rename app schulhack_v${SCHULHACK_VERSION} *.apk
rename '-release' '_release' *.apk

0 comments on commit e9847cf

Please sign in to comment.