0

We have uploaded an app into market with following api level in AndroidManifest file

uses-sdk android:minSdkVersion="15"
        android:targetSdkVersion="16"

It is for support of api level 4.1.1 and 4.1.2. But this app can be installed on 4.2 which has api level 17. Any ideas.

Praful Bhatnagar
  • 7,425
  • 2
  • 36
  • 44
user1479604
  • 117
  • 1
  • 3
  • 12

2 Answers2

0

targetSdkVersion does not specify the max SDK API level. Use maxSdkVersion as well.

This link may also be helpful.

gsgx
  • 12,020
  • 25
  • 98
  • 149
0

android:maxSdkVersion="16" :- This is the maximum SDK version number that an application works on. [integer]

Prashant Mishra
  • 627
  • 5
  • 18