Reputation: 7164
I want to work with Android API 19. I changed inside project.properties file target=android-19. In AndroidManifest.xml. I have this :
<uses-sdk android:minSdkVersion="10" android:targetSdkVersion="19" />
But in project properties I have this :
How can I change API level to 19 there to get rid of the error in the title. Thanks.
Upvotes: 23
Views: 65221
Reputation: 21
Window -> Preference -> Android. You should get a list of available targets. Click 'Apply' then 'Ok'.
Now right click your project, go to properties. Click Android. Choose your desired target.
Upvotes: 2
Reputation: 5136
Upvotes: 3
Reputation: 1857
Go to Windows -> Android SDK Manager Install the Android API Level you want, in this case 19.
Once you've finished installing, go to Window -> Preference -> Android. You should get a list of available targets. Click 'Apply' then 'Ok'.
Now right click your project, go to properties. Click Android. Choose your desired target.
Upvotes: 41
Reputation: 16
Window->Preferences->Android and validate your sdk location after that open your Android SDK Manager and validate if you have installed API 19
Upvotes: 0
Reputation: 2625
Check and add your SDK API20 to project, clean and build project.
You can ignore this warning
EDIT:
If you can work with 19 you must install API 19 through Android SDK
Upvotes: 0