Reputation: 455
I'm making an android project, pretty much i'm a noob, i need to make a project which will support the latest version too, but should be compatible with at least 2.3.3 version of android, but when i set my target to 2.3.3, compile with 2.3.3 and minimum to 2.3.3, now when i got to create a blank activity, it says minimum api level 14 required, how to achieve that or i can't make projects for api level below 14, i'm including images to explain it better
is there anyway i can achieve what i want to achieve?
Upvotes: 0
Views: 2117
Reputation: 128448
The template which you are trying to include in your application uses features (like the actionbar) that requires an API level higher than 14, in the first step of the wizard, you selected 10 and it's < 14 and that's why you are getting this error message.
As you want to develop an application with 2.3 compatibility, select below configurations:
Upvotes: 1
Reputation: 5302
you should set your Min SDK to API 10 and your target SDK to latest android API (currently 19). set these in your manifest file:
<uses-sdk android:minSdkVersion="10" android:targetSdkVersion="19"/>
Upvotes: 0