Skip to content

Instantly share code, notes, and snippets.

@geekman
Created October 2, 2013 10:18
Show Gist options
  • Select an option

  • Save geekman/6791636 to your computer and use it in GitHub Desktop.

Select an option

Save geekman/6791636 to your computer and use it in GitHub Desktop.
signs an APK with the debug key
@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