我测试了一个我用dreamweaver jQuery mobile在本地构建的应用程序能够从服务器访问外部资源。使用dreamweaver phonegap 编译我的应用程序后,我发现我的应用程序无法远程连接以访问外部资源。我使用了 eclipse,我能够指出我的应用程序使用的起点super.loadUrl("http://webaddress/folder/index.html");
。有什么方法可以使用我的 config.xml 为我的应用程序指出一个起点,用于 Dreamweaver phonegap。
<?xml version="1.3.1" encoding="UTF-8" ?>
<widget xmlns = "http://www.w3.org/ns/widgets"
xmlns:gap = "http://phonegap.com/ns/1.3.1"
id = "com.phonegap.example"
version = "1.3.1.0">
<name>Go tv app</name>
<description>
A simple PhoneGap Build application.
</description>
<author href="https://example.com" email="you@example.com">
Benjamin Blay
</author>
<feature name="http://api.phonegap.com/1.3.1/device" />
<preference name="phonegap-version" value="2.0.0" />
<preference name="orientation" value="default" />
<preference name="target-device" value="universal" />
<preference name="fullscreen" value="false" />
<preference name="stay-in-webview" value="true" />
<!-- Icons -->
<icon src="icon.png" />
<icon src="images/icon-72x72.png" width="72" height="72" gap:platform="android" gap:density="hdpi" />
<icon src="images/icon-96x96.png" width="96" height="96" gap:platform="android" gap:density="xhdpi" />
<icon src="images/icon-72x72.png" width="72" height="72" gap:platform="ios" />
<!-- Splash Screens -->
<gap:splash src="splash_screen.jpg" />
<gap:splash src="images/splash_screen-160x220.jpg" gap:platform="android" gap:density="ldpi" />
<gap:splash src="splash_screen.jpg" gap:platform="android" gap:density="mdpi" />
<gap:splash src="images/splash_screen-450x650.jpg" gap:platform="android" gap:density="hdpi" />
</widget>