Android 上传的应用程序在Google Play上显示默认图标

Android 上传的应用程序在Google Play上显示默认图标,android,cordova,google-play,apk,Android,Cordova,Google Play,Apk,当我在谷歌商店上传APK文件时,它会显示默认的应用程序。我在所有“可绘制”文件夹中更改图标。当我在emulator上运行程序时,它会显示我的图标。我使用Phonegap <?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.app.testeapp"

当我在谷歌商店上传APK文件时,它会显示默认的应用程序。我在所有“可绘制”文件夹中更改图标。当我在emulator上运行程序时,它会显示我的图标。我使用Phonegap

        <?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>


Google Play显示您在其后端上传的应用程序图标。因此,请上传正确的一个,它将显示;)

  • 删除默认图标
  • MDPI删除默认图标
  • XDPI删除默认图标

    清单应用程序图标检查。。如果您使用eclipse作为开发工具,请检查清单下的这些图标,其中可能有一个默认图标,只需删除它即可


您在部署应用程序时是否上传了512X512大小的图标?是的,店内列表。正确的?高分辨率图标默认值-英语(美国)-en US 512 x 512 32位PNG(带alpha)您已经修复了吗?@A.S.是的,没有任何方法对我有用,因此我创建了一个带有自定义图标的新项目,并发布solvedI,这一行是新的,你能告诉我怎么做和在哪里吗?你知道android有三个不同分辨率的可绘制HDPI可绘制MDPI可绘制XDPI的文件夹吗?你可能在“res”文件夹中留下了一个要删除的图标,对吗?可拉伸hdpi、可拉伸ldpi、可拉伸mdpi、可拉伸xhdpi。首先,我删除了所有4个图标,并将我自己的图标完全放在那里…我无法发布图像,所以我无法向您显示我有相同的问题。只需检查是否有一个图标可能在清单文件下,如果有,请删除该图标。希望它能起作用:)google play的图标,它的名字是什么/如果不从清单中删除它,它是ic_launcer。同样的情况也发生在我身上,但chek在google play中使用Different Resultion手机,其相应的设备图标是Different(或者如果您的图标名称是Different name,则从默认名称中删除3 Different文件夹中的所有ic_启动器)。