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.

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> 

  • 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

Popular posts from this blog

java.util.scanner - How to read and add only numbers to array from a text file -

rewrite - Trouble with Wordpress multiple custom querystrings -

php - Accessing static methods using newly created $obj or using class Name -