0
我使用phonegap build構建移動應用程序。我已經爲iOS,Android和Windows構建應用程序,並且我正在測試它在TestObject。我在我的應用程序中執行的操作是在頁面加載時重定向到http://google.com。Phonegap構建應用程序不適用於iOS
的index.html
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript" charset="utf-8" src="cordova.js"></script>
<script src="https://code.jquery.com/jquery-1.9.1.min.js"></script>
<script type="text/javascript" charset="utf-8">
function onLoad() {
document.addEventListener("deviceready", onDeviceReady, true);
}
function onDeviceReady() {
window.location.href = "http://google.com";
}
</script>
</head>
<body onload="onLoad();">
</body>
</html>
的config.xml
<?xml version="1.0" encoding="UTF-8" ?>
<widget xmlns = "http://www.w3.org/ns/widgets"
xmlns:gap = "http://phonegap.com/ns/1.0"
id = "com.newApp.mobileApp"
versionCode = "1"
version = "1.0.0" >
<!-- versionCode is Android only -->
<!-- version is in major.minor.patch format -->
<name>My New App</name>
<description>
An example for phonegap build app which wont show up in the playstore.
</description>
<author href="https://YourWebsite.com" email="[email protected]">
Name Of The Author
</author>
<plugin name="cordova-plugin-whitelist" source="npm"/>
</widget>
當用機器人(apk文件)進行測試時,它被重定向到google.com。但是當我用iOS設備(ipa文件)測試時,它只顯示空白頁面。
爲什麼它不適用於iOS?
任何人都可以幫助我解決這個問題嗎?提前致謝。
您是否爲您的ios設備設置了不限制的選項? ..posto你的config.xml也如果你可以 –
你有錯誤的標籤 - 'PHP' – mishanon
@ federicoscamuzzi..Please看到我更新的問題。 – Jenz