I use files from your archive.
If I generate .apk file with this settings, JDK 1.6 (build_debug_apk.bat)
SET JAVA_HOME="C:\Program Files\Java\jdk1.6.0_38"
...
REM Generating on the fly a debug key
keytool -genkey -v -keystore bin\LCLDebugKey.keystore -alias LCLDebugKey -keyalg RSA -validity 10000 -dname "CN=Jonh Doe" -storepass senhas -keypass senhas
...
REM Signing the APK with a debug key
del bin\%APP_NAME%-unaligned.apk
jarsigner -verbose -keystore bin\LCLDebugKey.keystore -keypass senhas -storepass senhas -signedjar bin\%APP_NAME%-unaligned.apk bin\%APP_NAME%-unsigned.apk LCLDebugKey
then I can successfully install .apk
C:\codetyphon\Projects\New_Empty\android>adb install bin\androidlcltest.apk
102 KB/s (740483 bytes in 7.056s)
pkg: /data/local/tmp/androidlcltest.apk
Success
If I change JDK version to 1.7, like this (leave the rest of the code the same)
SET JAVA_HOME="C:\Program Files\Java\jdk1.7.0_51"
....
REM Generating on the fly a debug key
keytool -genkey -v -keystore bin\LCLDebugKey.keystore -alias LCLDebugKey -keyalg RSA -validity 10000 -dname "CN=Jonh Doe" -storepass senhas -keypass senhas
....
REM Signing the APK with a debug key
del bin\%APP_NAME%-unaligned.apk
jarsigner -verbose -keystore bin\LCLDebugKey.keystore -keypass senhas -storepass senhas -signedjar bin\%APP_NAME%-unaligned.apk bin\%APP_NAME%-unsigned.apk LCLDebugKey
then I get installer error
C:\codetyphon\Projects\New_Empty\android>adb install bin\androidlcltest.apk
237 KB/s (740687 bytes in 3.049s)
pkg: /data/local/tmp/androidlcltest.apk
Failure [INSTALL_PARSE_FAILED_NO_CERTIFICATES]
and if I now change jarsigner to
jarsigner -verbose -sigalg MD5withRSA -digestalg SHA1 -keystore bin\LCLDebugKey.keystore -keypass senhas -storepass senhas -signedjar bin\%APP_NAME%-unaligned.apk bin\%APP_NAME%-unsigned.apk LCLDebugKey
then .apk installs correctly.