You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There is a problem that in a specific case, the app will stuck upon starting.
The specific case: when there is plugins changes, we have to submit to apple for review. this submitted build's manifest.json file is the same as our autoupdate server's version. Thus when player download this new build from appstore, cordova-app-loader treats it as no changes thus doesn't update manifest.root. Actually with the old manifest.root, you can't find the files because iOS app UUID changes. Thus after reloading, bootstrap.js can't load any files. I verified this by changing one file's uuid to make cordova-app-loader to update manifest.root and then it doesn't stuck any more.
I didn't fix this in cordova-app-loader but just replace app UUID in manifest.root with new one read from cordova.file.dataDirectory when loading js files.
Hope this can help if anyone encounters the same issue and has no idea what's going on.
The text was updated successfully, but these errors were encountered:
There is a problem that in a specific case, the app will stuck upon starting.
The specific case: when there is plugins changes, we have to submit to apple for review. this submitted build's manifest.json file is the same as our autoupdate server's version. Thus when player download this new build from appstore, cordova-app-loader treats it as no changes thus doesn't update manifest.root. Actually with the old manifest.root, you can't find the files because iOS app UUID changes. Thus after reloading, bootstrap.js can't load any files. I verified this by changing one file's uuid to make cordova-app-loader to update manifest.root and then it doesn't stuck any more.
I didn't fix this in cordova-app-loader but just replace app UUID in manifest.root with new one read from cordova.file.dataDirectory when loading js files.
Hope this can help if anyone encounters the same issue and has no idea what's going on.
The text was updated successfully, but these errors were encountered: