I have some apps in Google play with the following in the manifest.
<uses-sdk android:minSdkVersion="10" />
Now ,for every app in my developer console under Optimization tips it says this:
"Target and minimum Android versions support tablets"
What does this mean ? and also i have tried adding
<uses-sdk android:minSdkVersion="10"
android:targetSdkVersion="16"/>
But after adding this there are some features not working properly in my application.
So i would like to know :"
1) What is it trying to say?
2) Does it means that "My apps are not being featured by google for tablets ?"
3) What is the advantage and disadvantage?
4) Why does "menu" button in the device vanishes after adding android:targetSdkVersion="16"?
5) How to overcome this, without affecting any changes to my app?
Can anyone please help me with this?