Created
September 6, 2015 07:01
-
-
Save Folyd/8d95ce7fc1cc7d1b0a9d to your computer and use it in GitHub Desktop.
Singed apk file use local key store
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/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