I was trying to change my default/main/startup (whatever you call it) activity by editing the androidmanifest.xml file. All i did was change the android:name property. however, this completely broke the entire app. when I try to install it fails and reads.
Installation error: INSTALL_PARSE_FAILED_NO_CERTIFICATES
When I tried to change it back to its previous state, it was still giving me the same error… What have I done?
Did you edit the
AndroidManifest.xmldirectly in the.apkfile? If so, that won’t work.Every Android
.apkneeds to be signed if it is going to be installed on a phone, even if you’re not installing through the Market. The development tools work round this by signing with a development certificate but the.apkis still signed.One use of this is so a device can tell if an
.apkis a valid upgrade for an installed application, since if it is the Certificates will be the same.So if you make any changes to your app at all you’ll need to rebuild the
.apkso it gets signed properly.