au7
au7 copied to clipboard
cordova emulate [platform] fails to runs properly
When built with cordova for iOS and Android, the output build only launches showing the "loading..." message from the index.html
It never goes away, and the app just hangs there. cordova run browser command works just fine. How can this be remedied?
Same problem for me. Any idea?
Same problem here. Trying to debug, the application is not able to fetch the bundle js files:
Looking into how to solve this. If anyone has any idea, please guide.
ok. changing the following line in webpack.config.js solved this for me:
publicPath: '/dist/',
-> publicPath: 'dist/',
Issue: 0.bundle.js was being referred to as /dist/0.bundle.js, while the packaging in the bundled *.apk looked like this:
So, the path is relative to current folder and not to root.
@alflennik here's the PR in case this is the right way to solve this.