Reputation: 747
I have developed an Android app. I launched it in different phones, and the icons are my icons. But when I upload the APK file to Google Play, it appears as the Android default icon. In my resource file there are some Android default icons named "ic_launcher", but I do not link them. What can be the problem?
Upvotes: 1
Views: 1849
Reputation: 11
Check and modify the file AndroidManifest.xml
:
<application
android:icon="@drawable/ico_launcher"
android:label="@string/app_name"
Upvotes: 0
Reputation: 13364
Even if you don't link them Play Store will use those icons if you have not provided anything else.
Search ic_launcher in your project and replace that with the icon you want to show. Remember Launcher icons for display on Google Play must be 512x512 pixels.
see this guide for designing icons.
Upvotes: 2