-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.xml
96 lines (96 loc) · 5.53 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
89
90
91
92
93
94
95
96
<?xml version='1.0' encoding='utf-8'?>
<widget id="com.yourapp.dev" version="0.1.0" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
<name>Yourapp</name>
<description>
Awesome mobile application of Yourteam
</description>
<author email="[email protected]" href="https://yourapp.com">
Made with passion by yourteam
</author>
<content src="index.html" />
<access origin="*" />
<allow-intent href="http://*/*" />
<allow-intent href="https://*/*" />
<allow-intent href="tel:*" />
<allow-intent href="sms:*" />
<allow-intent href="mailto:*" />
<allow-intent href="geo:*" />
<allow-navigation href="*.yourapp.com" />
<allow-navigation href="about:blank" />
<feature name="StatusBar">
<param name="ios-package" onload="true" value="CDVStatusBar" />
</feature>
<feature name="CDVWKWebViewEngine">
<param name="ios-package" value="CDVWKWebViewEngine" />
</feature>
<preference name="BackgroundColor" value="0x060d2dff" />
<preference name="StatusBarOverlaysWebView" value="false" />
<preference name="StatusBarBackgroundColor" value="#060d2d" />
<preference name="StatusBarStyle" value="lightcontent" />
<preference name="AutoHideSplashScreen" value="false" />
<preference name="CordovaWebViewEngine" value="CDVWKWebViewEngine" />
<preference name="CRIInjectFirstFiles" value="www/js/fillCredentials.js" />
<preference name="CRIPageLoadPromptInterval" value="0" />
<preference name="CRIShowConnectionErrorDialog" value="0" />
<platform name="android">
<preference name="SplashMaintainAspectRatio" value="true" />
<icon density="ldpi" src="res/android/icon/icon-36-ldpi.png" />
<icon density="mdpi" src="res/android/icon/icon-48-mdpi.png" />
<icon density="hdpi" src="res/android/icon/icon-72-hdpi.png" />
<icon density="xhdpi" src="res/android/icon/icon-96-xhdpi.png" />
<icon density="xxhdpi" src="res/android/icon/icon-144-xxhdpi.png" />
<icon density="xxxhdpi" src="res/android/icon/icon-192-xxxhdpi.png" />
<splash density="land-hdpi" src="res/android/screen/screen-hdpi-landscape.png" />
<splash density="land-ldpi" src="res/android/screen/screen-ldpi-landscape.png" />
<splash density="land-mdpi" src="res/android/screen/screen-mdpi-landscape.png" />
<splash density="land-xhdpi" src="res/android/screen/screen-xhdpi-landscape.png" />
<splash density="port-hdpi" src="res/android/screen/screen-hdpi-portrait.png" />
<splash density="port-ldpi" src="res/android/screen/screen-ldpi-portrait.png" />
<splash density="port-mdpi" src="res/android/screen/screen-mdpi-portrait.png" />
<splash density="port-xhdpi" src="res/android/screen/screen-xhdpi-portrait.png" />
<allow-intent href="market:*" />
</platform>
<platform name="ios">
<preference name="StatusBarOverlaysWebView" value="false" />
<preference name="StatusBarBackgroundColor" value="#060d2d" />
<preference name="StatusBarStyle" value="lightcontent" />
<icon height="180" src="res/ios/icon/[email protected]" width="180" />
<icon height="60" src="res/ios/icon/icon-60.png" width="60" />
<icon height="120" src="res/ios/icon/[email protected]" width="120" />
<icon height="76" src="res/ios/icon/icon-76.png" width="76" />
<icon height="152" src="res/ios/icon/[email protected]" width="152" />
<icon height="40" src="res/ios/icon/icon-40.png" width="40" />
<icon height="80" src="res/ios/icon/[email protected]" width="80" />
<icon height="57" src="res/ios/icon/icon.png" width="57" />
<icon height="114" src="res/ios/icon/[email protected]" width="114" />
<icon height="72" src="res/ios/icon/icon-72.png" width="72" />
<icon height="144" src="res/ios/icon/[email protected]" width="144" />
<icon height="29" src="res/ios/icon/icon-small.png" width="29" />
<icon height="58" src="res/ios/icon/[email protected]" width="58" />
<icon height="50" src="res/ios/icon/icon-50.png" width="50" />
<icon height="100" src="res/ios/icon/[email protected]" width="100" />
<icon height="167" src="res/ios/icon/[email protected]" width="167" />
<splash src="res/ios/screen/Default@2x~universal~anyany.png" />
<plugin name="cordova-custom-config" version="*" />
<config-file parent="NSPhotoLibraryUsageDescription" platform="ios" target="*-Info.plist">
<string>Do you autoriser "yourapp" to access to the camera ?</string>
</config-file>
<allow-intent href="itms:*" />
<allow-intent href="itms-apps:*" />
</platform>
<engine name="browser" spec="~4.1.0" />
<engine name="android" spec="~6.1.2" />
<plugin name="cordova-plugin-splashscreen" spec="^4.1.0" />
<plugin name="cordova-plugin-statusbar" spec="^2.4.1" />
<plugin name="cordova-plugin-remote-injection" spec="^0.4.1" />
<plugin name="cordova-plugin-secure-storage" spec="^2.6.8" />
<plugin name="cordova-plugin-dialogs" spec="^1.3.4" />
<plugin name="cordova.plugins.diagnostic" spec="^3.9.1" />
<plugin name="cordova-custom-config" spec="^3.3.0" />
<plugin name="cordova-plugin-device" spec="^1.1.7" />
<plugin name="cordova-plugin-keyboard" spec="^1.2.0" />
<plugin name="cordova-plugin-whitelist" spec="^1.3.3" />
<plugin name="cordova-plugin-network-information" spec="^1.3.4" />
<plugin name="cordova-plugin-wkwebview-engine" spec="^1.1.4" />
<engine name="ios" spec="~4.5.4" />
</widget>