-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathconfig.ionic.xml
81 lines (78 loc) · 3.98 KB
/
config.ionic.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
<?xml version='1.0' encoding='utf-8'?>
<!-- Config for Ionic Build -->
<widget
id="org.strabospot.strabo"
version="1.19.8"
xmlns="http://www.w3.org/ns/widgets"
xmlns:cdv="http://cordova.apache.org/ns/1.0"
xmlns:gap="http://phonegap.com/ns/1.0">
<name>StraboSpot</name>
<description>
StraboSpot is a cross-platform app for geologic field data acquisition.
</description>
<author email="[email protected]" href="http://strabospot.org/">
StraboSpot Team
</author>
<content src="index.html"/>
<access origin="*"/>
<edit-config file="app/src/main/AndroidManifest.xml" mode="merge" target="/manifest/application"
xmlns:android="http://schemas.android.com/apk/res/android">
<application android:usesCleartextTraffic="true"/>
</edit-config>
<allow-intent href="http://*/*"/>
<allow-intent href="https://*/*"/>
<allow-intent href="tel:*"/>
<allow-intent href="sms:*"/>
<allow-intent href="mailto:*"/>
<allow-intent href="geo:*"/>
<preference name="webviewbounce" value="false"/>
<preference name="UIWebViewBounce" value="false"/>
<preference name="DisallowOverscroll" value="true"/>
<preference name="BackupWebStorage" value="none"/>
<preference name="android-minSdkVersion" value="19"/>
<preference name="android-targetSdkVersion" value="28"/>
<preference name="AndroidPersistentFileLocation" value="Internal"/>
<preference name="iosPersistentFileLocation" value="Library"/>
<preference name="AutoHideSplashScreen" value="false"/>
<preference name="SplashScreenDelay" value="2000"/>
<preference name="SplashScreen" value="screen"/>
<preference name="UIFileSharingEnabled" value="true"/>
<engine name="android" spec="7.1.4"/>
<engine name="ios" spec="4.5.5"/>
<plugin name="cordova-plugin-camera" spec="^4.1.0" />
<plugin name="cordova-plugin-device" spec="^2.0.3" />
<plugin name="cordova-plugin-device-motion" spec="^2.0.1" />
<plugin name="cordova-plugin-device-orientation" spec="^2.0.1" />
<plugin name="cordova-plugin-file" spec="^6.0.2" />
<plugin name="cordova-plugin-file-transfer" spec="^1.7.1" />
<plugin name="cordova-plugin-filepath" spec="^1.5.8" />
<plugin name="cordova-plugin-geolocation" spec="4.0.2" />
<plugin name="cordova-plugin-inappbrowser" spec="^3.2.0" />
<plugin name="cordova-plugin-ionic-keyboard" spec="^2.2.0" />
<plugin name="cordova-plugin-ionic-webview" spec="2.5.3">
<variable name="ANDROID_SUPPORT_ANNOTATIONS_VERSION" value="27.+" />
</plugin>
<plugin name="cordova-plugin-itunesfilesharing" spec="^0.0.2" />
<plugin name="cordova-plugin-network-information" spec="^2.0.2" />
<plugin name="cordova-plugin-splashscreen" spec="^5.0.3" />
<plugin name="cordova-plugin-statusbar" spec="^2.4.3" />
<plugin name="cordova-plugin-whitelist" spec="^1.3.4" />
<plugin name="cordova-sqlite-storage" spec="3.4.0"/>
<plugin name="cordova-plugin-zip" spec="^3.1.0" />
<plugin name="org.strabospot.clipboard" spec="https://github.com/StraboSpot/clipboard_plugin" />
<edit-config target="NSCameraUsageDescription" file="*-Info.plist" mode="merge">
<string>The strabospot app uses the camera to add images to field-collected sample data.</string>
</edit-config>
<edit-config target="NSPhotoLibraryUsageDescription" file="*-Info.plist" mode="merge">
<string>The strabospot app uses the photo library to add images to field-collected sample data.</string>
</edit-config>
<edit-config target="NSLocationWhenInUseUsageDescription" file="*-Info.plist" mode="merge">
<string>The strabospot app uses device location to find nearby sample data.</string>
</edit-config>
<edit-config target="NSLocationAlwaysUsageDescription" file="*-Info.plist" mode="merge">
<string>The strabospot app uses device location to find nearby sample data.</string>
</edit-config>
<edit-config target="NSPhotoLibraryAddUsageDescription" file="*-Info.plist" mode="merge">
<string>The strabospot app uses the photo library to add images to field-collected sample data.</string>
</edit-config>
</widget>