2013-10-07 49 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个图标,并将我自己的图标放在那里 –

相关问题