I got this error while installing the android application (Parse Error : There is a problem parsing the package.). I did the following steps.

  1. First time I installed the application and it works fine.

  2. I made changes to the existing application and change the version no in Manifest file.

    <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="org.openintents.samples.BasicOpenARDemo" android:versionCode="2" android:versionName="1.0.1">
    
  3. Then I export the application and finish the code signing process. For this, Right Click your Project node > select Export. There you will see a wizard. Follow the steps and finish the code signing also.

  4. I got the ARDemo.apk file, Then I changed it’s name to ARDemo1.apk

  5. Then I shipped this apk file to mobiles SD Card and started the installation I got the above error.

I googled, they say that problem with unpacking manifest file.

Can anyone tell me what could be wrong with me?

link|improve this question

Please accept the helpful answer below by clicking the check-mark next to it. – Jeremy Stein Oct 27 '09 at 18:38
you should put version number on three. please refer to the japanese tutorial on wikitude website – user235496 Dec 20 '09 at 13:58
Hi Ejder, Thanks for ur response. My problem was already fixed. My mistake is "I have changed the apk file name manually". In above 2 is my application version code not the minsdk value. I put the minsdk value as 3. Thanks & Regards, Raghavendra K – Raghavendra Dec 21 '09 at 11:22
2  
just thinking why does renaming became a problem? – mikedroid Feb 22 '11 at 12:25
1  
Hello Cru, Changeing version no doesn't created this problem. I have renamed the apk file once I did the export. It creates this problem. – Raghavendra Feb 22 '11 at 12:26
show 2 more comments
feedback

5 Answers

up vote 11 down vote accepted

You said that the first time you installed the application it worked fine.

The only difference in the steps you outlined between the two versions are:

  1. The version number (I'm assume that this did not participate in breaking anything)
  2. The code
  3. The name of the .apk file

Try renaming the ARDemo1.apk file back to ARDemo.apk (make sure to back up the older version) and see if that helps. My guess is that it has something to do with the name of the apk.

If it still does not work, then you can eliminate the name of the apk file as the source of the problem and start investigating 2) by rebuilding your old version and see if you have same problem again. If the problem does not exists with the rebuilt version of your old code then you know it must be something to do with your code.

I hope that gets you somewhere.

Cheers, Joseph

link|improve this answer
Hi Joseph, Your guess is correct. I renamed the apk file to earlier one. It works...... Thank You very much for your help..... – Raghavendra Oct 5 '09 at 3:25
I'm glad I could help. – user175750 Oct 29 '09 at 20:28
Hi, I am facing a similar problem. I am downloading the application from a web link. It sits on the mobile SDCard perfectly. But when I am trying to install it is showing this error. I didn't sign my application, basically I am a newbie to Android app development. Help of any sort is appreciated :) – Newbie May 2 at 13:11
feedback

Installation can give the specified error in following cases:

  • Name of the package is changed after signing: Use the exact name as the signed package is (instead, adjust the name in Manifest)
  • Package is compiled against on higher API level: Correct the API level in Manifest file
  • Package is executed from SD-card: Run (install) the apk -file from phones memory OR use adb command to install it
link|improve this answer
feedback

If you're compiling and exporting your apk file under SDK version 2.1, it will not work on any android version below your SDK export "2.1". Android software is forward compatible not backward compatible. For example if you're programming using the android NDK (ann add-on to the android SDK) package that allows development in the C/C++ family, this is only compatible with android 2.3, android version 2.2 and below support java builds only. Therefore you will reaceive the "There is a problem parsing the package" error.

link|improve this answer
feedback

I've only seen the parsing error when the android version on the device was lower than the version the app was compiled for. For example if the app is compiled for android OS v2.2 and your device only has android OS v2.1 you'd get a parse error when you try to install the app.

link|improve this answer
I was hit by that a while ago, took ages to figure out! – olafure Aug 7 '11 at 19:27
feedback

I got the same error (Parse Error, There is a problem parsing the package) while trying to install an .apk package from email. I was able to get around the problem by installing the 3rd party package installer ApKatcher:

http://www.addictivetips.com/mobile/install-android-apps-from-gmail/

ApKatcher isn't the only solution. A colleague of mine got around the problem by installing Astro File Manager.

You can find both applications in the Android Marketplace.

link|improve this answer
feedback

protected by Community Apr 27 at 11:39

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.