-
Notifications
You must be signed in to change notification settings - Fork 19
/
config.xml
88 lines (88 loc) · 4.86 KB
/
config.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<widget android-versionCode="6415" id="org.codaco.NetworkCanvasInterviewer6" ios-CFBundleIdentifier="org.codaco.networkCanvasInterviewerBusiness" ios-CFBundleVersion="6415" version="6.5.3"
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://complexdatacollective.org">
Complex Data Collective
</author>
<content src="index.html"/>
<access origin="*"/>
<access origin="cdvfile://*"/>
<allow-intent href="http://*/*"/>
<allow-intent href="https://*/*"/>
<hook src="scripts/cordova/before-run.js" type="before_run"/>
<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"/>
<icon density="ldpi" src="www/icons/android/NC-Round-ldpi.png"/>
<icon density="mdpi" src="www/icons/android/NC-Round-mdpi.png"/>
<icon density="hdpi" src="www/icons/android/NC-Round-hdpi.png"/>
<icon density="xhdpi" src="www/icons/android/NC-Round-xhdpi.png"/>
<icon density="xxhdpi" src="www/icons/android/NC-Round-xxhdpi.png"/>
<icon density="xxxhdpi" src="www/icons/android/NC-Round-xxxhdpi.png"/>
<edit-config file="app/src/main/AndroidManifest.xml" mode="merge" target="/manifest/application">
<application android:largeHeap="true"/>
<application android:usesCleartextTraffic="true"/>
</edit-config>
<edit-config file="app/src/main/AndroidManifest.xml" mode="merge" target="/manifest/supports-screens">
<supports-screens android:anyDensity="false" android:largeScreens="true" android:normalScreens="false" android:requiresSmallestWidthDp="600" android:resizeable="false" android:smallScreens="false" android:xlargeScreens="true"/>
</edit-config>
<edit-config file="app/src/main/AndroidManifest.xml" mode="merge" target="/manifest/application/activity">
<activity android:exported="true"/>
</edit-config>
</platform>
<platform name="ios">
<allow-navigation href="*"/>
<preference name="WKWebViewOnly" value="true"/>
<preference name="Allow3DTouchLinkPreview" value="false"/>
<preference name="scheme" value="app"/>
<preference name="hostname" value="localhost"/>
<allow-intent href="itms:*"/>
<allow-intent href="itms-apps:*"/>
<config-file parent="NSBonjourServices" target="*-Info.plist">
<array>
<string>_nc-server-6._tcp.</string>
</array>
</config-file>
<config-file parent="NSLocalNetworkUsageDescription" target="*-Info.plist">
<string>Network Canvas Interviewer uses this feature to enable automatic discovery of computers running Server on your network.</string>
</config-file>
<icon height="40" src="www/icons/ios/NC-Square-40.png" width="40"/>
<icon height="50" src="www/icons/ios/NC-Square-50.png" width="50"/>
<icon height="72" src="www/icons/ios/NC-Square-72.png" width="72"/>
<icon height="76" src="www/icons/ios/NC-Square-76.png" width="76"/>
<icon height="80" src="www/icons/ios/NC-Square-80.png" width="80"/>
<icon height="100" src="www/icons/ios/NC-Square-100.png" width="100"/>
<icon height="144" src="www/icons/ios/NC-Square-144.png" width="144"/>
<icon height="152" src="www/icons/ios/NC-Square-152.png" width="152"/>
<icon height="167" src="www/icons/ios/NC-Square-167.png" width="167"/>
<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="Orientation" value="landscape"/>
<preference name="target-device" value="tablet"/>
<preference name="DisallowOverscroll" value="true"/>
<preference name="Fullscreen" value="true"/>
<preference name="BackupWebStorage" value="none"/>
<preference name="AndroidPersistentFileLocation" value="Internal"/>
<preference name="iosPersistentFileLocation" value="Library"/>
<preference name="AllowInlineMediaPlayback" value="true"/>
<preference name="android-minSdkVersion" value="24"/>
<preference name="android-targetSdkVersion" value="33"/>
<preference name="resizeOnFullScreen" value="true"/>
<plugin name="cordova-plugin-device" spec="^2.0.2"/>
<plugin name="cordova-plugin-zeroconf" spec="^1.4.1"/>
<plugin name="cordova-plugin-inappbrowser" spec="~4.0.0"/>
<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>