ANDROID App与任何设备都不兼容

时间:2014-08-10 20:01:27

标签: android google-play

我正在尝试发布动态壁纸,但商店/开发者控制台一直说我的应用与任何设备都不兼容。

我不确定是什么问题。以下是我的清单。我相信这应该支持所有屏幕尺寸所以我不认为这是它。我不确定它还能是什么。

清单:

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

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="go.me.pinglivewallpaper"
    android:versionCode="4"
    android:versionName="1.3" >
    <supports-screens
        android:resizeable="true"
        android:smallScreens="true"
        android:largeScreens="true"
        android:xlargeScreens="true"
        android:normalScreens="true"
        android:anyDensity="true"/>
    <uses-sdk
        android:minSdkVersion="16"
        android:targetSdkVersion="20" />

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

    <application
        android:icon="@drawable/a"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >



        <service
            android:name="wallpaper"
            android:enabled="true"
            android:label="Ping Wallpaper "
            android:permission="android.permission.BIND_WALLPAPER" >
            <intent-filter>
                <action android:name="android.service.wallpaper.WallpaperService" >
                </action>
            </intent-filter>

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

    </application>

</manifest>

2 个答案:

答案 0 :(得分:2)

我会尝试删除:

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

there is no such feature in the Android SDK

答案 1 :(得分:1)

我删除了以下内容并更改为SDK版本19。

谢谢。

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