当我在谷歌商店上传 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>