Skip to content Skip to sidebar Skip to footer

Default Robot Icon Instead Of App Icon After Installation

I made my android app but when I install it on Anroid 6 my app has default robot icon instead my original app icon. But when I install the same app on device with android 4.4.2, my

Solution 1:

You need to set the activity icon

<activityandroid:icon="@drawable/ic_launcher"android:name="com.example.myapp.menu.MenuActivity"android:label="@string/app_name" ><intent-filter><actionandroid:name="android.intent.action.MAIN" /><categoryandroid:name="android.intent.category.LAUNCHER" /></intent-filter></activity>

Solution 2:

Did you place your custom icon in the drawable-xxhdpi folder too?

if no then place it ,clean and reinstall ur app

Solution 3:

Solution 4:

Had similar issue. Solution was to Remove background from ic_launcher.xml In my case it was empty anyway but caused this error

Post a Comment for "Default Robot Icon Instead Of App Icon After Installation"