10 lines
288 B
Bash
Executable File
10 lines
288 B
Bash
Executable File
#!/bin/bash
|
|
|
|
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
OLD_APK=${SCRIPT_DIR}/app/build/outputs/apk/release/app-release.apk
|
|
VERSION=$(cat $SCRIPT_DIR/../../scratch/version.txt)
|
|
NEW_APK=$(dirname $OLD_APK)/deighton-ar-${VERSION}.apk
|
|
|
|
mv $OLD_APK $NEW_APK
|
|
|
|
echo $NEW_APK |