Commit a124af0d authored by Pier Angelo Vendrame's avatar Pier Angelo Vendrame 🎃
Browse files

fixup! [android] Modify build system

TB 43799: Update the path where apks are.
parent 87693e04
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -2,6 +2,8 @@

cd "$(dirname $(realpath "$0"))/.."

objdir=$1

if [ -z "$APKSIGNER_ARGS" ]; then
	if [ -z "$QA_KEY" ]; then
		if [ -z "$TOR_BROWSER_BUILD" ]; then
@@ -62,7 +64,7 @@ sign () {
	"$apksigner" sign --in "$aligned" --out "$out" $APKSIGNER_ARGS
}

for channel in app/build/outputs/apk/fenix/*; do
for channel in "$objdir/gradle/build/mobile/android/fenix/app/outputs/apk/fenix/"*; do
	for apk in $channel/*-unsigned.apk; do
		sign "$apk"
	done