The app logo gets an Interacting look of our app. It also an identifier of the entire app.
Let’s start it.
When we create a new android app, Android Studio gives us by default the app launcher logo for the app. But we have to add our own app logo to the app.
Follow the following steps below…
- Add your app logo in the app/res/ drawable or app/res/mipmap file to call it later.
- Then open app/manifests/AndroidManifest.xml.
- Find android:icon in the application section.
- And replace the default app logo with your app logo (Simply call your logo name and implement here.)
You can get a reference from below.
<application
android:icon="Your_logo_path"
</application>
Now you can see your latest app logo on your app.
I hope it will help someone…
Thanks:)