2011-11-15 43 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