android - Flex mobile app only for tablets -
i release brand new flex mobile app tablets (ipads , android). how can configure application descriptor file properly?
for ios know it's possible:
<key>uidevicefamily</key> <array> <string>2</string> </array>
but android have no idea...
thanks,
gabriele
put in manifest
<supports-screens android:largescreens="true" android:normalscreens="false" android:requiressmallestwidthdp="600" android:smallscreens="false" android:xlargescreens="true" />
this make app available 7" screens , above
Comments
Post a Comment