我的 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,我不使用任何终端命令。