Singed apk file use local key store
#!/usr/bin/env bash | |
if [ $# -lt 2 ] ;then | |
echo "Please specify a key store" | |
exit 0 | |
fi | |
if [ $# -lt 3 ] ;then | |
echo "Please specify a source unsigned apk file" | |
exit 0 | |
fi | |
jarsigner -verbose -keystore $1 -signedjar signed.apk $2 beethoven |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment