0
votes

I am developing an android game which I want to run Only on WVGA devices. How can i restrict other resolution devices.

Normal screens, high density have WVGA device but low and medium density devices are also a part of it . How can i restrict my app to run on Large screen and normal screen (excluding low and medium density)

Regards

1

1 Answers

0
votes

You can add <support screens> permission in your Manifest file as below:

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

Please read this document link : http://developer.android.com/guide/practices/screens_support.html