-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathconfig.xml
executable file
·58 lines (58 loc) · 3.2 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
<?xml version='1.0' encoding='utf-8'?>
<widget id="polimi.geolab.lcc" version="1.0.0" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
<name>Land Cover Collector</name>
<description>
An Apache Cordova application that enables to collect data on land cover classification using the 10 classes of GLobeLand30.
</description>
<author email="[email protected]" href="http://geomobile.como.polimi.it/">
Candan Eylül Kilsedar
</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:*" />
<platform name="android">
<allow-intent href="market:*" />
<splash density="land-ldpi" src="res/screen/android/splash-land-ldpi.png" />
<splash density="land-mdpi" src="res/screen/android/splash-land-mdpi.png" />
<splash density="land-hdpi" src="res/screen/android/splash-land-hdpi.png" />
<splash density="land-xhdpi" src="res/screen/android/splash-land-xhdpi.png" />
<splash density="land-xxhdpi" src="res/screen/android/splash-land-xxhdpi.png" />
<splash density="land-xxxhdpi" src="res/screen/android/splash-land-xxxhdpi.png" />
<splash density="port-ldpi" src="res/screen/android/splash-portrait-ldpi.png" />
<splash density="port-mdpi" src="res/screen/android/splash-portrait-mdpi.png" />
<splash density="port-hdpi" src="res/screen/android/splash-portrait-hdpi.png" />
<splash density="port-xhdpi" src="res/screen/android/splash-portrait-xhdpi.png" />
<splash density="port-xxhdpi" src="res/screen/android/splash-portrait-xxhdpi.png" />
<splash density="port-xxxhdpi" src="res/screen/android/splash-portrait-xxxhdpi.png" />
<preference name="AutoHideSplashScreen" value="true" />
<preference name="SplashScreenDelay" value="3000" />
<preference name="SplashMaintainAspectRatio" value="true" />
</platform>
<platform name="ios">
<allow-intent href="itms:*" />
<allow-intent href="itms-apps:*" />
<splash src="res/screen/ios/Default@2x~universal~anyany.png" />
<preference name="AutoHideSplashScreen" value="true" />
<preference name="SplashScreenDelay" value="3000" />
<preference name="FadeSplashScreenDuration" value="1000" />
</platform>
<platform name="browser">
<preference name="ShowSplashScreen" value="false" />
</platform>
<plugin name="cordova-plugin-whitelist" spec="^1.3.3" />
<plugin name="cordova-plugin-globalization" spec="^1.0.8" />
<plugin name="cordova-plugin-device" spec="^1.1.7" />
<plugin name="cordova-plugin-camera" spec="^3.0.0" />
<plugin name="cordova-plugin-dialogs" spec="^1.3.4" />
<plugin name="cordova-plugin-network-information" spec="^1.3.4" />
<plugin name="cordova-plugin-geolocation" spec="^3.0.0" />
<plugin name="cordova-plugin-splashscreen" spec="^5.0.2" />
<engine name="ios" spec="^4.5.5" />
<engine name="browser" spec="^5.0.4" />
<engine name="android" spec="^7.0.0" />
</widget>