我的APP只是android,我使用的是OSX。
使用PhoneGap APP(在我的电脑中使用手机),一切都很完美!
但是因为我使用build.phonegap.com编译了APK,它不会加载外部内容。像外部javascript或$ .post ajax。
我输入了html标题:
<meta http-equiv="Content-Security-Policy"
content="default-src *;
style-src *;
script-src *;">
我的config.xml是这样的:
<?xml version='1.0' encoding='utf-8'?>
<widget id="com.foryounetwork.foryougran" version="1.0.0" xmlns="http://www.w3.org/ns/widgets" xmlns:gap="http://phonegap.com/ns/1.0">
<name> name </name>
<description> desc </description>
<author email="mymail" href="link"> name </author>
<content src="index.html" />
<preference name='phonegap-version' value='cli-5.2.0' />
<gap:plugin name='cordova-plugin-whitelist' source='npm' />
<gap:plugin name='cordova-plugin-splashscreen' source='npm' />
<gap:plugin name='cordova-plugin-media' source='npm' />
<gap:plugin name='cordova-plugin-file' source='npm' />
<gap:plugin name="cordova-plugin-crosswalk-webview" source='npm' />
<access origin="*" />
<allow-intent href="http://*/*" />
<allow-intent href="https://*/*" />
<allow-intent href="tel:*" />
<allow-intent href="sms:*" />
<allow-intent href="mailto:*" />
<allow-intent href="geo:*" />
<allow-navigation href="*" />
<preference name="orientation" value="default" />
<preference name="target-device" value="universal" />
<preference name="fullscreen" value="false" />
<preference name="webviewbounce" value="true" />
<preference name="android-minSdkVersion" value="14" />
<preference name="android-installLocation" value="auto" />
<icon src="icon.png" />
</widget>
所以不知道,但它没有连接到应用程序的外部内容。可能是白名单,但我不知道。
尝试使用CLI5.2和5.11。我使用OSX,我不使用任何终端命令。