0

I am very new to android. If this is the very basic question . bear with me.

I have set like below in my AndroidMenifest.

  <uses-sdk
        android:minSdkVersion="11"
        android:targetSdkVersion="17" />

wont my application run after API level 17 and below API level 11 ?

I am using SDK Platform 17. can i mention targetSDKVersion as 18?

saravanan
  • 5,339
  • 7
  • 45
  • 52

1 Answers1

2

Yes your application will run on API level 18 but will not run below API 11. You can set maxSdkVersion using android:maxSdkVersion="18". If you set this then your app will not work on api level 19.

Sunny
  • 14,522
  • 15
  • 84
  • 129