Reputation: 25
I'm developing an app using Baqend and ionic. When I run ionic serve
the app runs fine in the browser and it is able to call Baqend. However, when I run ionic cordova emulate ios
suddenly Baqend is not working in the Xcode emulator and it does not produce any errors in the console even with adding the --consolelog
parameter.
I also tried:
How can I debug this issue?
Update: I just tested it with Android using ionic cordova emulate android
and it worked fine. So it seems that the issue only exist with ios.
Upvotes: 0
Views: 97
Reputation: 25
The issue was solved by adding <allow-navigation href="https://*.app.baqend.com/*" />
in config.xml file.
Upvotes: 0