Initial import.

This commit is contained in:
Erik C. Thauvin 2008-11-04 08:39:33 +00:00
parent edeb77f683
commit 258d1ee693
17 changed files with 852 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