I've just uploaded my apk to the Google Play console. The problem is that on the app site on Google Play REQUIRES ANDROID field is wrong. It shows 1.6
while I've set it in the Manifest file to 2.3
. So I suppose now users with lower APIs can download my app and get bad experience as it will crash. Whats wrong?
fragment of the Manifest.xml:
<uses-sdk
android:minSdkVersion="9"
android:targetSdkVersion="17" />