Created
October 2, 2013 10:18
-
-
Save geekman/6791636 to your computer and use it in GitHub Desktop.
signs an APK with the debug key
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
| @echo off | |
| : | |
| : signapk.bat | |
| : signs an APK with the debug key | |
| : | |
| setlocal | |
| if [%1]==[] goto end | |
| if not exist %1 goto end | |
| @echo on | |
| jarsigner -verbose -keystore %USERPROFILE%/.android/debug.keystore -storepass android %1 androiddebugkey | |
| :end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment