Skip to main content
grosssmutttr
Known Participant
September 22, 2012
Answered

Exclude small devices

  • September 22, 2012
  • 1 reply
  • 815 views

How could I exclude small devices in my android app that is developed with flash builder 4.6.

I could exclude defined devices in the developer portal of googleplay, but how could I exclude all devices with a small resolution (320×480)

Screen layouts: SMALL

Best regards

This topic has been closed for replies.
Correct answer Phil Flash

Hi,

In your application descriptor, set false to smallScreens in manifestAdditions section like this :

<android>

        <manifestAdditions><![CDATA[

            <manifest android:installLocation="auto">

             <supports-screens

                 android:smallScreens="false"

                 android:normalScreens="true"

                 android:largeScreens="true"

                 android:xlargeScreens="true"

                 />

...

Philippe

1 reply

Phil FlashCorrect answer
Inspiring
September 22, 2012

Hi,

In your application descriptor, set false to smallScreens in manifestAdditions section like this :

<android>

        <manifestAdditions><![CDATA[

            <manifest android:installLocation="auto">

             <supports-screens

                 android:smallScreens="false"

                 android:normalScreens="true"

                 android:largeScreens="true"

                 android:xlargeScreens="true"

                 />

...

Philippe