-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix importing protocols from Server on iOS
- Loading branch information
Showing
4 changed files
with
24 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,13 @@ | ||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> | ||
<widget android-versionCode="6395" id="org.codaco.NetworkCanvasInterviewer6" ios-CFBundleIdentifier="org.codaco.networkCanvasInterviewerBusiness" ios-CFBundleVersion="6395" version="6.5.2" | ||
xmlns="http://www.w3.org/ns/widgets" | ||
xmlns:android="http://schemas.android.com/apk/res/android" | ||
xmlns:cdv="http://cordova.apache.org/ns/1.0"> | ||
<widget android-versionCode="6405" id="org.codaco.NetworkCanvasInterviewer6" ios-CFBundleIdentifier="org.codaco.networkCanvasInterviewerBusiness" ios-CFBundleVersion="6405" version="6.5.2" xmlns="http://www.w3.org/ns/widgets" xmlns:android="http://schemas.android.com/apk/res/android" xmlns:cdv="http://cordova.apache.org/ns/1.0"> | ||
<name>Network Canvas Interviewer</name> | ||
<description> | ||
A tool for conducting Network Canvas Interviews. | ||
</description> | ||
<author email="[email protected]" href="http://coda.co"> | ||
Complex Data Collective | ||
</author> | ||
<content src="index.html"/> | ||
<content src="http://192.168.1.210:3000/index.html"/> | ||
<access origin="*"/> | ||
<access origin="cdvfile://*"/> | ||
<allow-intent href="http://*/*"/> | ||
|
@@ -19,6 +16,7 @@ | |
<hook src="scripts/cordova/after-run.js" type="after_run"/> | ||
<hook src="scripts/cordova/before-prepare.js" type="before_prepare"/> | ||
<platform name="android"> | ||
<preference name="scheme" value="http"/> | ||
<allow-intent href="market:*"/> | ||
<allow-navigation href="https://*/*"/> | ||
<uses-permission android:name="android.permission.INTERNET"/> | ||
|
@@ -40,6 +38,7 @@ | |
</edit-config> | ||
</platform> | ||
<platform name="ios"> | ||
<allow-navigation href="*"/> | ||
<allow-navigation href="*"/> | ||
<allow-navigation href="*"/> | ||
<preference name="WKWebViewOnly" value="true"/> | ||
|
@@ -68,7 +67,6 @@ | |
<icon height="1024" src="www/icons/ios/NC-Square-1024.png" width="1024"/> | ||
<splash src="www/icons/ios/Default@2x~universal~anyany.png"/> | ||
</platform> | ||
<preference name="scheme" value="http"/> | ||
<preference name="Orientation" value="landscape"/> | ||
<preference name="target-device" value="tablet"/> | ||
<preference name="DisallowOverscroll" value="true"/> | ||
|
@@ -86,4 +84,4 @@ | |
<plugin name="cordova-plugin-network-information" spec="~2.0.2"/> | ||
<plugin name="cordova-plugin-chooser" spec="~1.3.1"/> | ||
<plugin name="cordova-sqlite-storage" spec="6.0.0"/> | ||
</widget> | ||
</widget> |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -315,4 +315,4 @@ | |
"cordova-plugin-ionic-keyboard": {} | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters