My phone is a Samsung Galaxy S II running Android version 2.3.3, and when I try开发者_如何学运维 to install a package I get the error
Parse Error
I use Android 3.2 to make these packages.
You answered yourself,
My phone is a Samsung Galaxy S II running Android version 2.3.3, and when I try to install a package I get the error "Parse Error". I use Android 3.2 to make these packages.
You are trying to open a 3.2 application on a 2.3.3 device.
Solution
Change the required API level tag
android:minSdkVersion
from the manifest fileor remove the required API level tag
android:minSdkVersion
.
The "There is a problem parsing the package" error could be from several causes, a common one being trying to open a package with an older android version. You say you are building those packages as 3.2 and trying to open them in a 2.3.3, so that's probably it.
Now, if I recall correctly 3.x version is only meant for tablets, but Samsung Galaxy S2 isn't a tablet... or is it?
精彩评论