0

I would like to release my brand new Flex mobile app only for tablets (IPads and Android). How can I configure the Application Descriptor File properly?

For IOS I know it's possible:

<key>UIDeviceFamily</key>
  <array>
    <string>2</string>
  </array>

but for Android I have no idea...

Thanks,

Gabriele

gfields
  • 17
  • 6

2 Answers2

1

put this in your manifest

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

this will make the app only available to 7" screens and above

tyczj
  • 71,600
  • 54
  • 194
  • 296
0

What do you define by tablet ? Some android tablets have the same screen size as some android phones. So you have to fit your requirements. Are you talking about the size of the screen ? If yes you should restrict your app for largeScreens and xlargeScreens.

You can read this article and this thread

Community
  • 1
  • 1
Alexis C.
  • 91,686
  • 21
  • 171
  • 177