0

I published App in play store. In this procedure, I gave my icon & name. When I search my App in play store, it is showing correct icon + name but when I install it in my phone it is showing default android icon and package name.

my app Where is the issue?

Second question: I want to show App short name in phone(after installation). like these show in picture:

other apps

Phantômaxx
  • 36,442
  • 21
  • 78
  • 108
mirza
  • 11
  • 1

1 Answers1

0

Those are part of your apk and not defined in play store.

You need to specify an icon drawable and a label in your android manifest xml. You should also specify the label for a launcher activity.

<application android:icon="@drawable/myicon" android:label="@string/shortname">
    <activity
        android:name=".MainActivity"
        android:label="@string/shortname" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN"/>
            <category android:name="android.intent.category.LAUNCHER"/>
        </intent-filter>
    </activity>
...
Josef Adamcik
  • 4,873
  • 3
  • 30
  • 38
  • Q#1: now icon is showing. what is better drawable or mipmap? Q#2:shortname is showing in installing process but when installation complete then icon appear on phone is showing as Package name. What I do now? – mirza Sep 20 '17 at 16:41
  • @mirza mipmap is better – Josef Adamcik Sep 20 '17 at 16:43
  • shortname is showing in installing process but when installation complete then icon appear on phone is showing as Package name not short. Please help me. – mirza Sep 21 '17 at 05:49
  • @mirza Add an attribute label to a launcher activity (the first one launched). See https://stackoverflow.com/a/13200774/135837 – Josef Adamcik Sep 21 '17 at 06:39