Meteor: [v1.6] Mobile config missing option for new Cordova iOS App Store icon

Created on 9 Oct 2017  路  3Comments  路  Source: meteor/meteor

The new "app store" 1024x1024 icon for Cordova is missing:
screen shot 2017-10-05 at 1 10 44 pm

I was able to get this new icon set by adding the following to mobile-config.js:

App.appendToConfig(`
  <platform name="ios">
    <icon height="1024" width="1024" src="../../../resources/splash/splash-1024x1024.png" />
  </platform>
`);

IMO this new icon should be added as a property of App.icons, ex: ios_appstore. This appears to be new in Xcode 9/iOS 11.

Without defining this icon, just building, archiving and submitting the build to iTunes Connect will result in Apple rejecting the build, warning that the "iOS App Store Icon" is missing. Referenced from https://github.com/meteor/meteor/pull/8728#issuecomment-334593305

Most helpful comment

We are having the same issue. iOS launch screens are also out of date. I'll submit a PR to fix.

All 3 comments

Could you confirm you are using cordova-custom-config?

Affirmative, without that it doesn't work

We are having the same issue. iOS launch screens are also out of date. I'll submit a PR to fix.

Was this page helpful?
0 / 5 - 0 ratings