문제

I want my app available on 7 inches tablets and bigger, the following code exclude lot of tablets like the Galaxy tab 7, HTC Flyer, etc.

 <supports-screens android:smallScreens="false" 
                   android:normalScreens="false" 
                   android:largeScreens="true" 
                   android:xlargeScreens="true" />

and if i set android:normalScreens to true, all the phones (and of course the 7 inch tablets) can see the app.

Is there a way to do what I need?

도움이 되었습니까?

해결책

You can directly filter devices in publisher console. Just allow any device in manifest file and filter in market. It's not the best way, but if you want such specific filter - you can use it.

다른 팁

You can combine the screensize with the screen density, see android:requiresSmallestWidthDp on: http://developer.android.com/guide/topics/manifest/supports-screens-element.html

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top