I'm trying to package an app as a native android app but am struggling with icons.
Within app.js there is this:
Code:
icon: { '57': 'resources/icons/Logo57.png',
'72': 'resources/icons/Logo72.png',
'114': 'resources/icons/Logo114.png',
'144': 'resources/icons/Logo144.png'
},
isIconPrecomposed: true,
startupImage: {
'320x460': 'resources/startup/320x460.jpg',
'640x920': 'resources/startup/640x920.png',
'768x1004': 'resources/startup/768x1004.png',
'748x1024': 'resources/startup/748x1024.png',
'1536x2008': 'resources/startup/1536x2008.png',
'1496x2048': 'resources/startup/1496x2048.png'
},
Which is fine....except they are, according to the documentation, only for iOS devices. I have confirmed they work on iOS devices also, but when I package it for an Android device I get no app icon and no startup image.
Does anyone know a way to do this?
I've also tried adding the image into the packager.json file like so:
Code:
"iconName":"Logo_57.png",
Not only does this only have one option and to account for different devices you need several....but it didn't work anyway.
Any help anyone can give will be greatly appreciated. 