SergKlimov / flickr-viewer-for-honeycomb

Automatically exported from code.google.com/p/flickr-viewer-for-honeycomb
0 stars 0 forks source link

Restrict to Only Support X-Large Screen #27

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
According to this blog, we should restrict our app to only support x-large 
screen. 
http://android-developers.blogspot.com/2011/09/preparing-for-handsets.html

<manifest ... >
    <supports-screens android:smallScreens="false"
                      android:normalScreens="false"
                      android:largeScreens="false"
                      android:xlargeScreens="true"
                      />
    <application ... >
        ...
    </application>
</manifest>

Original issue reported on code.google.com by yuyang...@gmail.com on 20 Sep 2011 at 2:38

GoogleCodeExporter commented 8 years ago
added and tested on xoom

Original comment by charle...@gmail.com on 20 Sep 2011 at 3:07