Use aapt2 in repo building script (#1712)

Use aapt2 in repo building script
This commit is contained in:
arkon 2019-10-27 19:51:43 -04:00 committed by GitHub
parent c547da3714
commit 5494c46052
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

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