我如何才能发布我的代号 One 应用程序,使其仅适用于平板电脑
How can I release my Codename One application so it will be available only to tablets
我正在尝试分发专为平板电脑而非手机设计的应用程序。为避免负面评论,我希望它只针对 iOS/Android 的应用商店中的平板电脑显示。
在项目首选项的 iOS 部分,我注意到有一个选项可以选择项目类型,但我没有看到 Android 的选项。
屏幕尺寸在 Android 上比在 iOS 上更加多样化和细微差别。 Android 包括 compatible-screens option and this higher level tutorial.
要将其应用于代号一,只需使用构建提示 android.xapplication
并为其设置相关的 XML 例如:
android.xapplication=<supports-screens android:smallScreens="false" android:normalScreens="false" android:largeScreens="true" android:xlargeScreens="true" android:requiresSmallestWidthDp="600" />
我正在尝试分发专为平板电脑而非手机设计的应用程序。为避免负面评论,我希望它只针对 iOS/Android 的应用商店中的平板电脑显示。
在项目首选项的 iOS 部分,我注意到有一个选项可以选择项目类型,但我没有看到 Android 的选项。
屏幕尺寸在 Android 上比在 iOS 上更加多样化和细微差别。 Android 包括 compatible-screens option and this higher level tutorial.
要将其应用于代号一,只需使用构建提示 android.xapplication
并为其设置相关的 XML 例如:
android.xapplication=<supports-screens android:smallScreens="false" android:normalScreens="false" android:largeScreens="true" android:xlargeScreens="true" android:requiresSmallestWidthDp="600" />