cordova - Adding splash screen image shows error in meteor app -


i trying add splash screen meteor app. in mobile-config.js file after adding

app.launchscreens({     //ios     'iphone_2x': '/images/splash/splash-375x667@2x.png'     }); 

when run meteor run ios-device, shows following error:

error while running mobile platforms: enoent, stat '/images/splash/splash-375x667@2x.png'

your file path(s) should not start slash. splash image located in yourapp/images/splash/splash-375x667@2x.png:

app.launchscreens({     //ios     'iphone_2x': 'images/splash/splash-375x667@2x.png'     }); 

see the official localmarket example's config mdg's github reference.


Comments