I saw that this question has been asked many times in Stackoverflow, and no one seems to have answered it properly. It is very simple.
For example, if you use phonegap to create an iOS application, you just need to: replace the default images with
www/res/icon/ios/icon-36-ldpi.png www/res/icon/ios/icon-48-mdpi.png www/res/icon/ios/icon-72-hdpi.png www/res/icon/ios/icon-96-xhdpi.png
with your badges ...
Then, before you can start the application, you will also need to replace the icons with Xcode: the path should be
**YOUR-APP-ROOT/platforms/ios/YOUR-APP-NAME/Resources/icons**
the magic lies inside "icon.png" and " icon@2x.png ", however you must replace all the icons above, and also make sure that you have the correct sizes for each image that you replace, otherwise the application will not run successfully.
Now you can
phonegap build ios
and then:
Launch ios cellular
Good luck
source share