Initial import.

This commit is contained in:
Erik C. Thauvin 2008-11-04 08:31:08 +00:00
parent fa089fb10b
commit 6abee2bae2
14 changed files with 695 additions and 0 deletions

10
sign.bat Normal file
View file

@ -0,0 +1,10 @@
@echo off
"%JAVA_HOME%\bin\jarsigner" -verbose -keystore "%USERPROFILE%\personal\android.keystore" "%1" android
if errorlevel 1 goto ERROR
"%JAVA_HOME%\bin\jarsigner" -verify "%1"
if errorlevel 1 goto ERROR
goto DONE
:ERROR
@pause
:DONE
@echo on