Revert "Use aapt2 in repo building script (#1712)"

This reverts commit 5494c46052.
This commit is contained in:
Eugene 2019-10-27 20:44:49 -04:00
parent 5494c46052
commit 743c945fec
No known key found for this signature in database
GPG Key ID: E1FD745328866B0A
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@ APKS=( ../apk/*".apk"* )
for APK in ${APKS[@]}; do for APK in ${APKS[@]}; do
FILENAME=$(basename ${APK}) FILENAME=$(basename ${APK})
BADGING="$(${TOOLS}/aapt2 dump badging $APK)" BADGING="$(${TOOLS}/aapt dump badging $APK)"
PACKAGE=$(echo "$BADGING" | grep package:) PACKAGE=$(echo "$BADGING" | grep package:)
PKGNAME=$(echo $PACKAGE | grep -Po "name='\K[^']+") PKGNAME=$(echo $PACKAGE | grep -Po "name='\K[^']+")