Change App Icon

To Change the app icon follow these steps

  1. Navigate to the "mipmap" directory located in the "res" folder of your Android project.

  2. Replace the existing app icon with your new icon. You can use different sizes for various screen densities and different shapes for round and rectangle variants if needed. You can also use the same icon for all variants if preferred.

  3. Ensure that the new icon retains the same name as the original icon file ("ic_launcher"), or if you rename the icon file, update the icon reference in the "AndroidManifest.xml" file to reflect the new name.

  4. Finally, rebuild and run your app to see the updated app icon in action.

  5. Remember to follow Android's guidelines for creating app icons to ensure compatibility and visual consistency across different devices and screen sizes.

https://developer.android.com/studio/write/create-app-icons

Here is the AndroidManifest.xml file in app and call the app icon from here you can also call the app icon from the drawable folder if you store the app icon in the drawable folder.switch the the top left option Android to project if you face any problem to find AndroidManifest.xml file .

change app_logo.xml from drawable .this resource is used in main topbar . replase it by the same name .drawable and also from drawable night folder .

Last updated