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
#1. removing sing from Android apk in the current directory/カレントディレクトリのapkから署名を削除する | |
find . -name '*.apk' -exec zip -d {} 'META-INF*' \; | |
#2. signing Android apk in the current directory/カレントディレクトリのapkに署名をする | |
find . -name '*.apk' -exec jarsigner -verbose -keystore KEYSTORE_PATH -storepass KEYSTORE_PASSPHRASE {} ALIAS_NAME -keypass ALIAS_PASS \; | |
#3. verifiyng signs/カレントディレクトリのapkの署名を検証する | |
find . -name '*.apk' -exec jarsigner -verify \; |
0 件のコメント:
コメントを投稿