fix release-build scripts for new gradle output paths

This commit is contained in:
Eric House 2018-07-11 06:45:00 -07:00
parent af0ddaa0f7
commit 3477bcf7b6
2 changed files with 2 additions and 2 deletions

View file

@ -53,7 +53,7 @@ git checkout ${TAG}${BRANCH}
cd ./xwords4/android/
./scripts/arelease.sh --apk-list $OUT_FILE
mkdir -p /tmp/releases
cp app/build/outputs/apk/*.apk /tmp/releases
cp app/build/outputs/apk/xw4/release/*.apk /tmp/releases
if [ -n "$XW_RELEASE_SCP_DEST" ]; then
cat $OUT_FILE | while read APK; do

View file

@ -54,7 +54,7 @@ fi
if [ -z "$FILES" ]; then
do_build
for f in $(dirname $0)/../app/build/outputs/apk/*-unsigned-*.apk; do
for f in $(dirname $0)/../app/build/outputs/apk/xw4/release/*-unsigned-*.apk; do
$(dirname $0)/sign-align.sh --apk $f
done
fi