我正在使用Meteor的移动应用程序,我在使用launchScreens图像时遇到了一些问题,我现在只是尝试使用iPhone 6 plus,虽然它在6plus模拟器中工作正常,当我在实际设备上运行它时,launchScreens默认为流星图标,如果有人可以提供帮助那就太棒了。
这是我的mobile-config.js文件......
App.icons({
// iOS
'iphone_2x': 'resources/icons/icon-180x180.png',
'iphone_3x': 'resources/icons/icon-180x180.png',
'iphone6p': 'resources/icons/icon-180x180.png'
});
App.launchScreens({
'iphone6p_portrait': 'resources/splash/splash-1242x2208@3x.png',
'iphone6p_landscape': 'resources/splash/splash-2208x21242@3x.png',
});