2013年7月23日 星期二

限制app只能在平板上執行

可以參考官網說明: http://developer.android.com/guide/practices/screens-distribution.html#FilteringTabletApps

在manifest內加入



 ... >
     android:smallScreens="false"
                      android:normalScreens="false"
                      android:largeScreens="true"
                      android:xlargeScreens="true"
                      android:requiresSmallestWidthDp="600" />
    ...
     ... >
        ...
    

其中要注意的是   android:requiresSmallestWidthDp="600" 這一項

要在properties build Target執行android 3.2以上才有支援提供,

不然你會出現以下error訊息:

No resource identifier found for attribute 'requiresSmallestWidthDp' in package 'android



沒有留言: