现在我正在开发一个使用cordova 8的应用程序,我已经使用ajax调用了我的服务器,但这个调用不起作用,我已经配置了whitlist和meta标签。
这是我对白名单的配置:
<access origin="http://myserver.com" />
<access origin="https://maps.googleapis.com" />
<access origin="https://fonts.gstatic.com" />
<access origin="https://fonts.googleapis.com" />
<access origin="https://maps.gstatic.com" />
<access origin="https://ssl.gstatic.com" />
<access origin="https://fonts.googleapis.com" />
<allow-intent href="http://*/*" />
<allow-intent href="https://*/*" />
<allow-intent href="tel:*" />
<allow-intent href="sms:*" />
<allow-intent href="mailto:*" />
<allow-intent href="geo:*" />
<!-- and my meta tag -->
<meta http-equiv="Content-Security-Policy" content="default-src 'self' http://myserver.com https://maps.googleapis.com https://fonts.gstatic.com https://fonts.googleapis.com https://maps.gstatic.com data: gap: https://ssl.gstatic.com 'unsafe-inline'; style-src 'self' https://fonts.googleapis.com 'unsafe-inline'; media-src *; connect-src *">
&#13;
而且,我尝试在build.phonegap.com中构建apk,这里工作得很好。
你知道如何在Android Studio SDK中构建apk并解决问题吗?
谢谢!