让Android应用程序显示为平板电脑的设计

fre*_*hie 10 android google-play cordova

我在PlayStore上有一个cordova应用程序,但在优化提示中显示该应用程序不是专为平板电脑设计的.我环顾四周并改变了<supports-screens>标签,但它仍然没有工作,我仍然得到优化提示.

这是清单文件:

<?xml version="1.0" encoding="utf-8"?>
<manifest android:versionCode="11"    
                    android:versionName="$BundleVersion$" 
                    package="$AppIdentifier$" 
                    android:windowSoftInputMode="adjustPan"
                    android:hardwareAccelerated="$AndroidHardwareAcceleration$"
                    xmlns:android="http://schemas.android.com/apk/res/android" >
        <supports-screens
                android:largeScreens="true"
                android:normalScreens="true"
                android:smallScreens="true"
                android:xlargeScreens="true"
                android:resizeable="true"
                android:anyDensity="true"
                />

        <application android:label="@string/app_name" 
                                 android:icon="@drawable/icon" 
                                 android:hardwareAccelerated="$AndroidHardwareAcceleration$">
                <activity android:label="@string/app_name" 
                    android:name=".TelerikCallbackActivity"
                    android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale"
                    android:launchMode="standard"
                                    android:theme="@android:style/Theme.Black.NoTitleBar" >
                        <intent-filter>
                                <action android:name="android.intent.action.MAIN" />
                                <category android:name="android.intent.category.LAUNCHER" />
                        </intent-filter>
                </activity>
        </application>
        <uses-sdk android:targetSdkVersion="14" />
</manifest>
Run Code Online (Sandbox Code Playgroud)

这是配置文件:

<cordova>

    <content src="index.html" />

    <preference name="useBrowserHistory" value="true" />
    <preference name="exit-on-suspend" value="false" />
    <preference name="fullscreen" value="true" />
    <preference name="permissions" value="none"/>

    <plugins>
        <plugin name="App" value="org.apache.cordova.App"/>
        <plugin name="Device" value="org.apache.cordova.Device"/>
    </plugins>
</cordova>
Run Code Online (Sandbox Code Playgroud)

我需要做些什么才能使应用程序适用于平板电脑?

Jac*_* He 3

您需要的不是“基于代码的答案”。

Google Play 将审核您上传的信息,以判断应用程序是否也适用于平板电脑。

这应该包括以下内容。

(1) 带有平板电脑启动画面的应用程序

(2) 带有平板电脑图标的应用程序

(3) 平板电脑屏幕配置。(你已经根据你的问题设置了)

(4) 平板电脑信息。(截图、宣传图片等)