0

携帯電話の Google Play でしか見られないライブ壁紙を公開しました。タブレットの Google Play で検索しても、アイテムが見つかりません。タブレットに壁紙を手動でインストールしようとしましたが、問題なく動作します。Google はどうにかして私のライブ壁紙がタブレットに適していないと判断し、アプリを非表示にしますか? ありがとうございました!!

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.tdf.freshpaper"
    android:versionCode="3"
    android:versionName="0.9">    
<uses-sdk
    android:minSdkVersion="8"
    android:targetSdkVersion="17" />

<uses-feature
    android:name="android.software.live_wallpaper" />

<application
    android:icon="@drawable/logo"
    android:label="@string/app_name" >
    <service
        android:name="com.tdf.fresh.MainActivity"
        android:description="@string/wallpaper_description"
        android:enabled="true"
        android:permission="android.permission.BIND_WALLPAPER" >
        <intent-filter android:priority="1">
            <action android:name="android.service.wallpaper.WallpaperService" />
        </intent-filter>

        <meta-data
            android:name="android.service.wallpaper"
            android:resource="@xml/wallpaper" />
    </service>

    <activity
        android:name="com.tdf.fresh.SettingsActivity"
        android:exported="true"``
        android:theme="@android:style/Theme.NoTitleBar" >
    </activity>

</application>

4

1 に答える 1

0

Google Play デベロッパー コンソールにログインすると、セクション コールが表示されますOptimization Tips。何らかの理由でアプリがタブレットと互換性がない場合は、その理由が見つかります。

とにかく、マニフェストでこれを試すことができます:

 <supports-screens android:largeScreens="true" android:xlargeScreens="true"/>
于 2013-08-04T16:54:03.667 に答える