Is there a way to disable a specific version from Google Play.
For example hide/disable Honeycomb version 3.1 from Google Play?
Currently I have
<supports-screens
android:smallScreens="true"
android:normalScreens="true"
android:largeScreens="true"
android:xlargeScreens="true"
android:anyDensity="true"/>
<uses-sdk android:minSdkVersion="7" android:targetSdkVersion="10"/>
But I don’t want user with version 3.1 to see my app.
Thanks!
In google play you can upload multiple apk’s, so that you can have different versions to target different platforms (perhaps you have a version with newer sdk features, but you keep another version built for older phones w/ different features)… you could have two, with the same code: one that targets below up to 3.x, and the other that targets above… you’ll then have to maintain two apk’s with the same code, of course. Also I don’t think it prevents them from side-loading, it just filters it out of their results on the play store app.
Suppose you want to block only 3.1, and you support from 1.5+ up to 4.1
For one apk, you’ll have:
And for the other:
Of course, adjust the targets and bounds as they make sense. It might be grumpy if max < target, I’m not sure. And keep in mind target sdk compatibilities..
AS a follow up, here’s some insight from the documentation on multiple apk’s:
http://developer.android.com/guide/google/play/publishing/multiple-apks.html