To change the app icon perform the following steps:
- Select the image you want to use as icon. The image could be a png image file or a SVC image vector file
- for png images:
- right click in one directory of the
app/res
structure. Usually I use the mipmap
directory - New-->Image Asset, upload the image and configure the corresponding panel
- for SVC images
- right click in one directory of the app/res structure. Usually I use the
mipmap
directory - New-->Vector Asset, upload the image and configure the corresponding panel
- Modify the AndroidManifest.xml as follows:
android:icon="@mipmap/ic_cloud"
where ic_cloud
is the name of the image in the "Configure Image Asset"
panel.