I am building a cross-platform Cordova app with Visual Studio 2017. When building my .apk file, Visual Studio only generates icon assets for the device I have plugged in, not all the sizes that need to be supported in a Play Store release.
Relevant line in my config.xml that defines my icon:
<icon src="res/icons/icon_psi_color_edges.png" />
In my .apk file, under assets/
, VS only creates a drawable-mdpi-v4
folder, corresponding to the Nexus 4 device I am using as the deployment target.
I would like to have Visual Studio generate all the icon sizes. Is there a solution to this problem?