How to change icon app only in application manager android?

1.4k views Asked by At

Is it possible to change the icon of my android application only in the applications manager (Settings->manage applications) to be something other than the app icon (Launcher)? I use android:icon in the AndroidManifest but it changes the twice. I honestly can't find any answer to this.

1

There are 1 answers

1
Farya On

By Settings->manage applications, if you mean Device Setting Account manager icon, then in your application res folder you can find xml folder, from the xml file on that folder you need to change your icon. For example --

<account-authenticator 
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:accountType="@string/auth_type"
    android:icon="@drawable/ic_contest_icon"
    android:label="@string/app_name"
    android:smallIcon="@drawable/ic_contest_icon" />

you need to put your icon id from drawable on android:icon="@drawable/ic_contest_icon" and android:smallIcon="@drawable/ic_contest_icon"