我正在尝试分发专为平板电脑而非手机设计的应用。为避免负面评论,我希望它仅适用于iOS / Android应用商店中的平板电脑。
在项目首选项的iOS部分中,我注意到有一个选项可以选择项目类型,但我没有看到Android的选项。
答案 0 :(得分:0)
Android上的屏幕尺寸比iOS更加多样化和细微差别。 Android包含compatible-screens option和此higher level tutorial。
要将此应用于Codename One,只需使用构建提示android.xapplication
并为其设置相关的XML,例如:
android.xapplication=<supports-screens android:smallScreens="false" android:normalScreens="false" android:largeScreens="true" android:xlargeScreens="true" android:requiresSmallestWidthDp="600" />