I have disabled the autoupdate feature in mobile app for fixing the white screen issue on initial load in mobile apps using below code in client/main.js file.
if (Meteor.isCordova) {
Reload._onMigrate(function (retry) {
return [false];
});
}
This works for android app but not working in iOS apps.
I also tried below configurations in mobile-config.js file but not working in iOS app.
Thanks for the reply, I do not include the AUTOUPDATE_VERSION in the mobile build. I only added this settings in galaxy configuration, Please check the below code.
How can i add this parameter in mobile build?