android - Uploaded App Show Default Icon on Google Play -
when upload apk file on google store, display default app. change icons @ "drawable" folder. show icon when run program on emulator. use 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>
- hdpi-remove default icon
- mdpi-remove default icon
xdpi-remove default icon
the manifest app icon check.. if have eclipse development check these icon under manifest 1 default icon may there delete it.
Comments
Post a Comment