2011-11-15 45 views
1

我有一个动态壁纸(LWP)目前同时在Android电子市场以及亚马逊AppStore上运行。在我测试的许多设备中,我能够在店面成功查看,下载和安装我的动态壁纸。但是,特别是2款设备无法在Android电子市场上找到我的LWP,但我们能够从Amazon Appstore查看,下载和安装我的LWP。 2.麻烦的设备:动态壁纸兼容性问题

  • Boost Mobile公司中兴通讯经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> 

我最初认为这是与使用PERMISSON的东西,但上面的设备都能够查看,下载d在Amazon Appstore上安装此LWP。只有在Android Market上,这个LWP才会显示为与这些设备不兼容。

任何想法?

回答

0

无论出于何种原因,复制保护(设置为ON)充当上述设备的过滤器。一旦我将其设置为关闭状态,我就可以查看,下载并安装我的动态壁纸,没有任何问题。希望这可以帮助他人解决这个问题。

+0

你应该接受这个答案。 – TryTryAgain