Reputation: 1073
Im using Phonegap Build to package my app. I have gone in to the "settings" section and uploaded the app icon:
I then rebuild. However, when I go to the public page and download the .apk, I still get the default Phonegap icon. When I look in /assets/www/res/icon/android/ in the .apk package, I see the standard Phonegap icons. Any ideas why it's ignoring my uploaded icon?
Upvotes: 2
Views: 1086
Reputation: 6363
You shouldn't manually upload an icon in the setting section of Phonegap Build, as the apk will use the icon specified in the config.xml
file.
The Phonegap Build UI has been since then updated to show:
Your application's details are bound to the config.xml file in your application package. To edit these details, change that file and push it back up to us.
Upvotes: 1
Reputation: 5799
The Cordova/PhoneGAp project when created will have some default images along with in the platform related folders. There will be multiple files based on the device screen size.
They are the default icons and you can replace them.
If you use Eclipse ADT, it has inbuilt option of generating multiple size files for an image which gets added to the project automatically.
Upvotes: 0