-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.xml
73 lines (70 loc) · 3.66 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
<?xml version='1.0' encoding='utf-8'?>
<widget id="com.tlsft.todo.app" version="0.1.0" xmlns="http://www.w3.org/ns/widgets" xmlns:gap="http://phonegap.com/ns/1.0">
<name>TLSFT Todo Demo</name>
<description>A Todo app demonstrating Torchlight hybrid app dev.</description>
<author email="[email protected]" href="https://torchlightsoftware.com">
Torchlight Team
</author>
<preference name="StatusBarStyle" value="default" />
<preference name="ShowSplashScreenSpinner" value="false" />
<preference name="DisallowOverscroll" value="true" />
<access origin="*" />
<content src="index.html" />
<platform name="windows"></platform>
<platform name="ios">
<preference name="Orientation" value="all" />
<preference name="AutoHideSplashScreen" value="true" />
<preference name="SplashScreenDelay" value="0" />
</platform>
<platform name="android">
<preference name="android-minSdkVersion" value="19" />
<preference name="Orientation" value="default" />
<preference name="SplashScreenDelay" value="0" />
<resource-file src="google-services.json" target="google-services.json" />
</platform>
<engine name="android" spec="~6.4.0" />
<engine name="ios" spec="^4.5.3" />
<plugin name="cordova-plugin-battery-status" spec="^1.2.5" />
<plugin name="cordova-plugin-ble-central" spec="^1.1.4">
<variable name="BLUETOOTH_USAGE_DESCRIPTION" value="Bluetooth development purposes" />
</plugin>
<plugin name="cordova-plugin-camera" spec="^3.0.0">
<variable name="CAMERA_USAGE_DESCRIPTION" value="Camera used for development purposes" />
<variable name="PHOTOLIBRARY_USAGE_DESCRIPTION" value=" " />
</plugin>
<plugin name="cordova-plugin-device" spec="^1.1.7" />
<plugin name="cordova-plugin-device-motion" spec="^1.2.5" />
<plugin name="cordova-plugin-dialogs" spec="^1.3.4" />
<plugin name="cordova-plugin-file" spec="^5.0.0" />
<plugin name="cordova-plugin-file-transfer" spec="^1.7.0" />
<plugin name="cordova-plugin-geolocation" spec="^3.0.0">
<variable name="GEOLOCATION_USAGE_DESCRIPTION" value="Geolocation used for development purposes" />
</plugin>
<plugin name="cordova-plugin-globalization" spec="^1.0.8" />
<plugin name="cordova-plugin-inappbrowser" spec="^1.7.2" />
<plugin name="cordova-plugin-insomnia" spec="^4.3.0" />
<plugin name="cordova-plugin-media" spec="^4.0.0">
<variable name="MICROPHONE_USAGE_DESCRIPTION" value=" " />
</plugin>
<plugin name="cordova-plugin-media-capture" spec="^2.0.0">
<variable name="CAMERA_USAGE_DESCRIPTION" value="Camera used for development purposes" />
<variable name="MICROPHONE_USAGE_DESCRIPTION" value="Microphone used for development purposes" />
<variable name="PHOTOLIBRARY_USAGE_DESCRIPTION" value="Photo library used for development purposes" />
</plugin>
<plugin name="cordova-plugin-network-information" spec="^1.3.4" />
<plugin name="cordova-plugin-screen-orientation" spec="^2.0.2" />
<plugin name="cordova-plugin-splashscreen" spec="^4.1.0" />
<plugin name="cordova-plugin-statusbar" spec="^2.3.0" />
<plugin name="cordova-plugin-vibration" spec="^2.1.6" />
<plugin name="cordova-plugin-x-socialsharing" spec="^5.2.1" />
<plugin name="phonegap-plugin-barcodescanner" spec="^6.0.8">
<variable name="CAMERA_USAGE_DESCRIPTION" value="Camera used for development purposes" />
</plugin>
<plugin name="phonegap-plugin-contentsync" spec="^1.4.1" />
<plugin name="phonegap-plugin-mobile-accessibility" spec="^1.0.5" />
<plugin name="phonegap-plugin-push" spec="^2.1.2">
<variable name="FCM_VERSION" value="11.0.1" />
</plugin>
<plugin name="cordova-plugin-whitelist" spec="^1.3.3" />
<allow-navigation href="*" />
</widget>