I get the error:
ERROR: Application requires API version 11. Device API version is 8 (Android 2.2).
How can I change the API version of my app, I am using eclipse.
Thanks
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Edit the
android:minSdkVersiontag in your AndroidManifest.xml file. Set this value to the lowest level you are targeting…in this case 8.If you want to compile against a higher API level, but allow the app to run on 2.2 devices, leave the minimum at 8, and add a
android:targetSdkVersionparameter set to 11.HTH