动态壁纸没有显示在平板电脑谷歌播放

时间:2013-08-04 16:02:22

标签: android live-wallpaper

我发布了一个动态壁纸,但只能在手机的Google Play上找到。如果我在平板电脑的Google Play上搜索,则找不到该项。我尝试手动在平板电脑上安装壁纸,它运行没有问题。将谷歌以某种方式确定我的动态壁纸不适合平板电脑和隐藏我的应用程序?谢谢!!

<?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>

1 个答案:

答案 0 :(得分:0)

登录Google Play Developer Console,应该有一个部分电话Optimization Tips。如果由于某种原因你的应用程序与平板电脑不兼容,你会发现原因。

无论如何,你可以在清单中试试这个:

 <supports-screens android:largeScreens="true" android:xlargeScreens="true"/>