我的动态壁纸(LWP)目前同时存在于Android Market以及Amazon AppStore上。在我测试的众多设备中,我能够在两个店面上成功查看,下载和安装我的动态壁纸。但是,特别是2台设备无法在Android Market上找到我的LWP,但是能够从Amazon Appstore查看,下载和安装我的LWP。 2个麻烦的设备是:
Boost Mobile ZTE Warp v2.3.4
HUAWEI-M835 v2.2.1
这是我的manifest.xml -
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.a3mn.fu_exoticanimalprints" android:versionCode="5" android:versionName="1.4" >
<uses-sdk android:minSdkVersion="7"/>
<uses-permission android:name="android.permission.SET_WALLPAPER_HINTS" />
<application android:icon="@drawable/icon" android:label="@string/app_name">
<activity android:name=".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=".Main"
android:enabled="true"
android:icon="@drawable/icon"
android:label="@string/app_name"
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>
</application>
</manifest>
我最初认为它与USES-PERMISSON有关,但上述设备都可以在Amazon Appstore上查看,下载和安装此LWP。仅在Android Market上,此LWP才会显示为与这些设备不兼容。
有什么想法吗?
答案 0 :(得分:1)
无论出于何种原因,复制保护(设置为ON)都充当上述设备的过滤器。一旦我将其设置为OFF,我就可以查看,下载和安装我的动态壁纸,没有任何问题。希望这可以帮助其他人解决这个问题。