kabisa / maji

Maji is a framework to build great hybrid mobile apps.
https://www.majimobile.com/
MIT License
18 stars 10 forks source link

Not able to post form in production build android app #208

Closed guidotheelen closed 6 years ago

guidotheelen commented 6 years ago

The new version of Cordova needs a new plugin to allow navigation to urls.

The fix is to include the cordova-plugin-whitelist plugin, and allow navigation to your desired page.

Include this code in cordova's config.xml to allow all navigation:

<plugin name=“cordova-plugin-whitelist” spec=“^1.3.3” />
<allow-navigation href="*" />
guidotheelen commented 6 years ago

Fixed by adding the following code:

<plugin name="cordova-plugin-whitelist" spec="~1.3.0" />
<!-- Whitelist the entire network over HTTP and HTTPS.-->
<allow-navigation href="*" />
leonderijke commented 6 years ago

(edited to add syntax highlighting to code blocks)