0

I have a LG P500 with Android 2.2 and when I want to install any .apk a message appears:

 "There is problem parsing package"
user
  • 86,916
  • 18
  • 197
  • 190
  • how do you install the apk ? Do you use adb ? – tbruyelle Mar 21 '11 at 10:47
  • First of all, if you have any previous version of the app, uninstall it then try again. Secondly if your installing using adb, make sure the app supports android 2.2 in the manifest under minSdkVersion. Hope this helps, happy coding! – MattMatt Sep 16 '13 at 02:27

4 Answers4

0

its possible your device doesn't meet the minimum processor or gpu requirements of the application.

Vinay W
  • 9,912
  • 8
  • 41
  • 47
0

If the device Android OS version is not compatible with the .apk file Like .apk file is build in minimum sdkversion 15,and sdktarget 17(ICS) and you have device version 2.3 (gingerbread)

Richa
  • 3,165
  • 1
  • 22
  • 26
0

I think there might be change in .apk names , difference in versions, check here , "Parse Error : There is a problem parsing the package" while installing Android application Any of those cases you might be encountering

Community
  • 1
  • 1
sat
  • 40,138
  • 28
  • 93
  • 102
0

Did you build your .apk using Android 2.2 or earlier? I had the same problem and found that I compiled the .apk using a SDK version (4.0.3) which was greater than the version my phone supported (2.3.4). I rebuilt my application using SDK 2.3.3 (with some porting mods). I was able to install if after doing so.

Jerry
  • 11
  • 1
  • Build target has nothing to do with the ability to install and run the app. Generally, you can build your app using any SDK version and you can still install it and run it on older/newer devices. – Tomik Oct 28 '12 at 19:42