Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I've an app targeted to Gingerbread. What attributes do I need to change/add in manifest file to make it run on a tablet?

share|improve this question
2  
Probably nothing, but that is difficult to tell, since we cannot see your manifest, and therefore do not know what you have. – CommonsWare Apr 18 '12 at 23:35
what I want to know is that if there are additional attribs needs to be defined in order to enable it to run on tablets. In my knowledge, the only thing will be good to have is: android:xlargeScreens= true. Are there any other such attributes which helps a gingerbread targeted app to run on tablets? – bianca Apr 18 '12 at 23:52

1 Answer

up vote 0 down vote accepted

You don't have to add anything. If you wan't your app to run only in tablets you should filter the devices allowed by screen size, adding the following code to your manifest:

<supports-screens 
 android:smallScreens="false"
 android:normalScreens="false"
 android:largeScreens="true"
 android:xLargeScreens="true"
 android:requiresSmallestWidthDp="600" 
              />
share|improve this answer
Note that this configuration will mean that the app will be filtered out of the Play Store for phones. – CommonsWare Apr 18 '12 at 23:54

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.