0

当我在谷歌商店上传 APK 文件时,它显示默认应用程序。我更改图标@所有“可绘制”文件夹。当我在模拟器上运行程序时,它会显示我的图标。我使用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>
4

2 回答 2

1
  • HDPI-删除默认图标
  • MDPI-删除默认图标
  • XDPI-删除默认图标

    清单应用程序图标检查..如果您将 eclipse 作为开发检查清单下的这些图标,则可能存在一个默认图标,只需将其删除即可。

于 2013-10-07T10:06:49.190 回答
0

Google Play 会显示您在其后端上传的应用图标。所以请上传正确的,它会显示出来的;)

于 2013-10-07T10:05:44.823 回答