通过从Google Play安装应用程序来应用屏幕限制



我开发了一个应用程序,我想要这样的功能,如果屏幕尺寸低于3英寸,那么应用程序不应该从Google play安装。

那么我该怎么做呢?

尝试在您的manifest.xml中添加<support-screens>

<supports-screens android:resizeable=["true"| "false"]
              android:smallScreens=["true" | "false"]
              android:normalScreens=["true" | "false"]
              android:largeScreens=["true" | "false"]
              android:xlargeScreens=["true" | "false"]
              android:anyDensity=["true" | "false"]
              android:requiresSmallestWidthDp="integer"
              android:compatibleWidthLimitDp="integer"
              android:largestWidthLimitDp="integer"/>

>

最新更新