Create the mipmap folder in the res directory, right-click on the rec => folder and copy path and go to this directory and create this folder, see this image

After creating this folder, you can see this directory in Android studio.

add this icon size to your folder
LDPI - 36 x 36 MDPI - 48 x 48 HDPI - 72 x 72 XHDPI - 96 x 96 XXHDPI - 144 x 144 XXXHDPI - 192 x 192.
then add this icon to the Android manifest file.
<application android:allowBackup="true" android:icon="@mipmap/ic_launcher" android:label="@string/app_name" android:supportsRtl="true" android:theme="@style/AppTheme"> <activity android:name=".MainActivity"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> <activity android:name=".ActivityTwo"> </activity> </application>
source share