Skip to content

Commit

Permalink
Add apk renaming script
Browse files Browse the repository at this point in the history
  • Loading branch information
robertying committed Mar 24, 2021
1 parent 4ebd093 commit 61bcc1b
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions scripts/rename_apks_for_release.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
#!/bin/bash

APK_DIR="android/app/build/outputs/apk/release"
cp $APK_DIR/app-x86_64-release.apk $APK_DIR/learnX-x86_64-$VERSION_TAG.apk
cp $APK_DIR/app-arm64-v8a-release.apk $APK_DIR/learnX-arm64-v8a-$VERSION_TAG.apk
cp $APK_DIR/app-armeabi-v7a-release.apk $APK_DIR/learnX-armeabi-v7a-$VERSION_TAG.apk
cp $APK_DIR/app-x86-release.apk $APK_DIR/learnX-x86-$VERSION_TAG.apk
cp $APK_DIR/app-universal-release.apk $APK_DIR/learnX-universal-$VERSION_TAG.apk

0 comments on commit 61bcc1b

Please sign in to comment.