我的应用不支持任何设备

My app supports no device

我的第一个应用程序有一个大问题。我今天早些时候将该应用程序上传到 Google Play 商店,那里说我的应用程序支持零设备。我究竟做错了什么?这是我的 AndroidManifest.xml

<?xml version="1.0" encoding="utf-8"?>

<supports-screens
    android:anyDensity="true"
    android:largeScreens="true"
    android:normalScreens="true"
    android:smallScreens="false"
    android:resizeable="true"   />

<uses-feature
    android:name="android.service.wallpaper"
    android:required="true">
</uses-feature>

<application
    android:allowBackup="true"
    android:icon="@drawable/icon"
    android:label="@string/app_name"
    android:theme="@style/AppTheme" >
    <activity
        android:name="app.wallpaper.com.giflivewallpaper.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>

    <service
        android:name="app.wallpaper.com.giflivewallpaper.GIFWallpaperService"
        android:enabled="true"
        android:label="Particle Live Wallpaper"
        android:permission="android.permission.BIND_WALLPAPER" >
        <intent-filter>
            <action android:name="android.service.wallpaper.WallpaperService" />
        </intent-filter>
        <meta-data
            android:name="android.service.wallpaper"
            android:resource="@xml/wallpaper" >
        </meta-data>
    </service>
</application>

在您的 uses-feature 中,您是指 android.software.live_wallpaper 吗?

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

http://developer.android.com/guide/topics/manifest/uses-feature-element.html