Error INSTALL_PARSE_FAILED_NO_CERTIFICATES in Eclipse

Hi, I was looking at a different message than us regarding the error in the INSTALL_PARSE_FAILED_NO_CERTIFICATES Eclipse error, but I have not yet found the reason and how to fix it. I attached a screenshot of my Eclipse to see the idea that visually.

I do not know how to fix this.

Sign the application for publishing on google play, since then I get this error, can it be? I can do? because if they lose the project ...

Thank you very much!

Capture my eclipse

Duplicated Android Manifest

+8
android eclipse
source share
7 answers

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

+6
source share

if you have an old application without a certificate on the device and try installing a new one with a certificate, this will be a problem.

delete the old one and try again.

For the next task, go to eclipse.ini and change the options with -XmsAm and -XmxBm . Your will be -Xms40m and -Xmx384m set for them -Xms512m and -Xmx512m

+3
source share

I had the same error, and I was able to fix it as follows:

  • delete old application
  • clear project
  • run and reinstall it.
+3
source share

For those who have this problem ...

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

Choosing V2 can also cause this problem. enter image description here

+3
source share

This is an ugly but quick solution: use JDK 6 instead of 7. So many ppl have encountered the jdk 7 problem. Try using jdk 6

+2
source share

your statements , bin, res do not correspond to the current format, delete these files and paste them into the project again, then clean && & build again, can this give a positive result

+1
source share

In most cases, the solution to this error is very simple: How did I answer: What is the INSTALL_PARSE_FAILED_NO_CERTIFICATES error?

  • Remove apk.
  • Clean up your Android project.
  • Build your Android project.
  • install / run apk

Good luck

+1
source share

All Articles