Update More Architecture

This commit is contained in:
siritami
2023-05-10 11:44:10 +07:00
parent d48ad3e29c
commit 822f345523
7 changed files with 72 additions and 14 deletions

View File

@@ -94,3 +94,15 @@ patch() {
exit 1
fi
}
change_arch() {
if [ -f "./build/$1.apk" ]; then
java -jar revanced-cli*.jar \
-b revanced-patches*.jar \
-a ./build/$1.apk \
--keystore=ks.keystore \
$3 \
-o ./build/$2.apk
else
exit 1
fi
}