Reputation: 263
When i install the apk in android 2.3.4 device it shows "Error on package parsing"application developed on android 2.2 version.How can i install this app into 2.3.4 device?
Upvotes: 0
Views: 1112
Reputation: 2145
You just removed the below line from your manifest file.
<uses-sdk android:minSdkVersion=" " />
Upvotes: 0
Reputation: 6403
You need to change the android target in your project (Properties -> Android -> Change the version). Rebuild the project and export the .apk file.Try to install the .apk in devide again.
Upvotes: 1