Cordova - Adaptive icons on Android
I have a generated set of icons using Android Image Asset Studio . However, I do not know how I can set those icons to my app in Cordova . When following the documentation regarding icons in Cordova , I only managed to set the square icons to my project using the following code: <platform name="android"> <!-- ldpi : 36x36 px mdpi : 48x48 px hdpi : 72x72 px xhdpi : 96x96 px xxhdpi : 144x144 px xxxhdpi : 192x192 px --> <icon src="res/android/ldpi.png" density="ldpi" /> <icon src="res/android/mdpi.png" density="mdpi" /> <icon src="res/android/hdpi.png" density="hdpi" /> <icon src="res/android