在 Play 开发者控制台中,它说:
您的 APK 似乎不是为平板电脑设计的
但是我已经在layout-sw600dp、layout-sw600dp-land、layout-sw720dp和layout-sw720dp-land文件夹中添加了布局。完整的清单(原样):
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.technicosa.unjumble"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="9"
android:targetSdkVersion="18" />
<supports-screens
android:anyDensity="true"
android:largeScreens="true"
android:normalScreens="true"
android:resizeable="true"
android:smallScreens="true"
android:xlargeScreens="true" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/Theme.Sherlock.Light.DarkActionBar" >
<activity
android:name="com.technicosa.unjumble.MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name="com.technicosa.unjumble.UserSettingsActivity"
android:label="@string/title_activity_user_settings" >
</activity>
</application>
该应用程序可以在模拟器中的 Nexus 7 和 Nexus 10 上完美运行。同样在优化提示下的开发人员控制台中,它说:
您的正式版 APK 需要满足以下条件:使用 10 英寸平板电脑上的可用屏幕空间
我的应用程序的屏幕截图:
虽然该应用程序似乎可以在平板电脑上运行(我只在模拟器上进行了测试),但必须做些什么才能满足 Play 标准?