0

我发布了动态壁纸,但只能在手机的 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>

4

1 回答 1

0

登录到你的Google Play Developer Console,应该有一个部分调用Optimization Tips。如果由于某种原因您的应用程序与平板电脑不兼容,您会在那里找到原因。

无论如何,您可以在清单中尝试此操作:

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