在 Corona SDK build 840 制作的 android 清单中,Google 播放不“查看”标签支持的屏幕。谷歌“说”该应用程序是为 small-xlarge 的屏幕设计的,尽管在 build.settings 中写入仅支持小型和正常尺寸。
build.settings 文件:
settings =
{
android =
{
supportsScreens =
{
resizeable = false,
smallScreens = true,
normalScreens = true,
largeScreens = false,
xlargeScreens = false,
}
},
iphone =
{
plist =
{
UIAppFonts =
{
"Mail Ray Stuff.ttf"
},
CFBundleIconFile = "Icon.png",
CFBundleIconFiles = {
"Icon.png",
"Icon@2x.png",
"Icon-72.png",
},
},
},
}
解码 AndroidManifest.xml
<supports-screens
android:smallScreens="true"
android:normalScreens="true"
android:largeScreens="false"
android:resizeable="false"
android:xlargeScreens="false"
>
</supports-screens>
但是当加载到谷歌播放时,它支持所有尺寸
我究竟做错了什么?