2016-12-30 87 views
0

我使用phonegap build構建移動應用程序。我已經爲iOS,Android和Windows構建應用程序,並且我正在測試它在TestObject。我在我的應用程序中執行的操作是在頁面加載時重定向到http://google.comPhonegap構建應用程序不適用於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?

任何人都可以幫助我解決這個問題嗎?提前致謝。

+0

您是否爲您的ios設備設置了不限制的選項? ..posto你的config.xml也如果你可以 –

+0

你有錯誤的標籤 - 'PHP' – mishanon

+0

@ federicoscamuzzi..Please看到我更新的問題。 – Jenz

回答

0
<access origin="*" launch-external="yes" /> 
    <allow-intent href="http://*/*" /> 
    <allow-intent href="https://*/*" /> 
    <access origin="http://127.0.0.1*"/> 
    <allow-navigation href="*"/> 
    <allow-intent href="*"/> 

是在關於白名單安全起見,我在我的應用程序

除了上述

使用這些意圖,我添加了這個插件爲Android

<gap:plugin name="cordova-plugin-whitelist" version="1.1.0" source="npm" /> 

和IOS

<plugin name="cordova-plugin-whitelist" spec="https://github.com/apache/cordova-plugin-whitelist.git" /> 
相關問題