Skip to content Skip to sidebar Skip to footer

Install_parse_failed_no_certificates Error In Eclipse

Hi I have been looking at different post than we on the subject of error in error INSTALL_PARSE_FAILED_NO_CERTIFICATES Eclipse, but I have not yet found the cause and how to fix it

Solution 1:

First sign your apk with jarsigner, then reinstall using adb install -r <apkfile> (or first uninstall the application that is signed with a proper certificate)

Solution 2:

For those with this problem...

Select V1 (jar signature) instead of V2 (full apk signature)

Selecting V2 could also cause this problem.enter image description here

Solution 3:

if you got your old appication without the certificat on the device and try to install the new one with a certificat this will be a problem.

uninstall the old one and try it again.

For your next problem go to eclipse.ini and change the parameters from -XmsAm and -XmxBm. Yours will be -Xms40m and -Xmx384m set them to -Xms512m and -Xmx512m

Solution 4:

I had the same error and was able to fix it in this way:

  1. uninstall the old application
  2. clean the project
  3. run and reinstall it again

Solution 5:

This is an ugly but fast solution: use JDK 6 instead of 7. So many ppl have experienced problem with jdk 7 . Try with jdk 6

Post a Comment for "Install_parse_failed_no_certificates Error In Eclipse"