2013-10-07 51 views
0

當我在Google商店上載APK文件時,它會顯示默認應用程序。我更改圖標@所有「可繪製」文件夾。當我在仿真器上運行程序時,它顯示我的圖標。我使用Phonegap。已上傳的應用程序在Google Play上顯示默認圖標

enter image description here

 <?xml version="1.0" encoding="utf-8"?> 
    <manifest xmlns:android="http://schemas.android.com/apk/res/android" 
     package="com.app.testeapp" 
     android:versionCode="1" 
     android:versionName="1.0" > 

     <uses-sdk 
     android:minSdkVersion="3" 
     android:targetSdkVersion="18" /> 

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

     <uses-permission android:name="android.permission.INTERNET" /> 
     <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> 




     <application 
     android:icon="@drawable/ic_launcher" 
     android:label="@string/app_name" 
     android:theme="@style/AppTheme" > 
     <activity 
      android:configChanges="orientation|screenSize|keyboardHidden|keyboard|locale" 
      android:name="com.app.testeapp.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> 
     <activity 
      android:icon="@drawable/ic_launcher" 
      android:name="org.apache.cordova.DroidGap" 
       android:label="@string/app_name" 
       android:configChanges="orientation|screenSize|keyboardHidden|keyboard|locale"> 
       <intent-filter></intent-filter> 
      </activity> 

     </application> 

    </manifest> 
+0

您是否在部署應用時上傳了512X512大小的圖標? –

+0

是的,在商店上市。對 ? 高分辨率圖標 默認 - 英語(美國) - en-US 512 x 512 32位PNG(帶alpha) –

+0

您是否已經修復了它? –

回答

0

谷歌Play會顯示在他們的後臺上傳的應用程序圖標。所以,請上傳正確的,它會顯示;)

1
  • HDPI-刪除默認圖標
  • MDPI,刪除默認圖標
  • XDPI,刪除默認圖標

    清單應用程序圖標檢查..如果你有eclipse作爲開發檢查這些圖標在清單下一個默認圖標可能只是刪除它。

+1

我是新的這一行, 你能告訴我如何和在哪裏? –

+0

你知道有針對Android不同勢分辨率 繪製,HDPI 繪製,MDPI三個文件夾 繪製-XDPI 可能是你HAV左邊的圖標刪除 – DropAndTrap

+0

在「資源」文件夾嗎? drawable-hdpi, drawable-ldpi, drawable-mdpi, drawable-xhdpi。首先我刪除所有4個圖標,並將我自己的圖標放在那裏 –

相關問題