Reputation: 3005
I have the targetSdkVersion set as 17 in my manifest. Kindly let me know if there will be any problem when I run this in the phone which has the API of 18.
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="17" />
Upvotes: 1
Views: 8632
Reputation: 11314
I will not support API 18 and if you upload it to play store then it will not be visible for all device > API 17
For example my Application which is uploaded to Play Store have 10 - 18 API support so it support 3326 Type of devices on play store similarly and it is available for those api level devices only
Say if you want Wifi Permissions and device not have wifi it won't be visible for those device who don't have wifi
If you directly install it to Device > API 17 it will give warning but will install
The Official Documentation Mentions here
Upvotes: 4
Reputation: 3355
No. But it is recommended to set android:targetSdkVersion to the newest version.
Upvotes: 0