Mobile-config.js for iPhone 6 and iPhone 6s Plus

Hello. Current part of my mobile-config.js looks like this…

App.icons({
‘iphone_2x’: ‘resources/icons/icon-60@2x.png’,
‘android_hdpi’: ‘resources/icons/icon-72x72.png’,
‘android_xhdpi’: ‘resources/icons/icon-96x96.png’,
// … more screen sizes and platforms …
});

This is for the app icons.

When my app loads on iPhone 6s Plus the primary icon is not displayed… but the default meteor icon is dispayed…

similarly with splash screen

App.launchScreens({
‘iphone5’: ‘resources/splash/iphone5-640x1136.png’,
‘iphone6’: ‘resources/splash/iphone6-750x1334.png’,
‘android_xhdpi_portrait’: ‘resources/splash/android_xhdpi_portrait-720x1280.png’,
// … more screen sizes and platforms …
});

I need the way by which all the iPhone/Android device would show the primary logo(the one that I created) to show up. What is the tag, such as iphone5, for iphone6? or iphone6s plus?

This was very useful to me: https://github.com/lpender/meteor-assets

1 Like

Thank You. It works!