Shivam Pandya
Shivam Pandya

Reputation: 1061

Uploaded App Show Default Icon on Google Play

When I upload APK file on Google Store, It display Default App. I change icons @ all "drawable" folder. Its show my icon when I run program on emulator. I 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>

Upvotes: 0

Views: 1474

Answers (2)

DropAndTrap
DropAndTrap

Reputation: 1630

  • HDPI-remove default icon
  • MDPI-remove default icon
  • XDPI-remove default icon

    The manifest app icon check.. if you have eclipse as a development check these icon under manifest one default icon may be there just delete it.

Upvotes: 1

A.S.
A.S.

Reputation: 4574

Google Play shows the App Icon you have uploaded in their Backend. So please Upload the right one and it will be shown ;)

Upvotes: 0

Related Questions