Meteor iOS Icon Fix
A really simple little cordova plugin for meteor iOS apps that removes old cordova icons, which would otherwise result in App Store review rejection.
It also adds the 1024x1024 marketing icon, which meteor currently doesn't allow you to add via mobile-config.js
.
Installation
meteor add cordova:meteor-ios-icon-fix@1.0.0
Illustration
Meteor 1.4.4.4 without this plugin:
Meteor 1.4.4.4 with this plugin:
Meteor 1.5.2.2 without this plugin, with all iOS icons specified:
Meteor 1.5.2.2 with this plugin (with all iOS icons specified - some get removed):
Configuration
You can specify which icons to remove in your mobile-config.js file :
App; // this is the default.App; // this is the default.
You also need to add your iOS marketing icon in your meteor project in a cordova-build-override
folder, with the filename of marketing_icon_1024x1024.png
and size of 1024x1024 pixels.