This repository has been archived by the owner on Jan 19, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
config.xml
executable file
·70 lines (70 loc) · 4.42 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
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<widget id="io.ionic.StudUCLouvain" version="1.2.75" xmlns="http://www.w3.org/ns/widgets">
<name>Stud.UCLouvain</name>
<description>StudUCLouvain an application for the student of UCLouvain</description>
<author email="[email protected]" href="https://www.facebook.com/Stud.UCLouvain">UCLouvain INGI Students</author>
<content src="index.html"/>
<access origin="*"/>
<allow-navigation href="http://ionic.local/*"/>
<allow-navigation href="http://130.104.162.199:8100"/>
<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="LogLevel" value="ERROR"/>
<preference name="webviewbounce" value="false"/>
<preference name="UIWebViewBounce" value="false"/>
<preference name="DisallowOverscroll" value="true"/>
<preference name="android-minSdkVersion" value="19"/>
<preference name="BackupWebStorage" value="none"/>
<preference name="SplashMaintainAspectRatio" value="true"/>
<preference name="FadeSplashScreenDuration" value="300"/>
<preference name="SplashShowOnlyFirstTime" value="false"/>
<preference name="SplashScreen" value="screen"/>
<preference name="AutoHideSplashScreen" value="false"/>
<preference name="loadUrlTimeoutValue" value="700000"/>
<preference name="ShowSplashScreenSpinner" value="false"/>
<preference name="GOOGLE_MAPS_ANDROID_API_KEY" value="androidkey"/>
<hook src="scripts/increment_version.js" type="before_prepare"/>
<platform name="android">
<resource-file src="google-services.json" target="app/google-services.json"/>
<allow-intent href="market:*"/>
<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>
<icon density="ldpi" src="resources/android/icon/drawable-ldpi-icon.png"/>
<icon density="mdpi" src="resources/android/icon/drawable-mdpi-icon.png"/>
<icon density="hdpi" src="resources/android/icon/drawable-hdpi-icon.png"/>
<icon density="xhdpi" src="resources/android/icon/drawable-xhdpi-icon.png"/>
<icon density="xxhdpi" src="resources/android/icon/drawable-xxhdpi-icon.png"/>
<icon density="xxxhdpi" src="resources/android/icon/drawable-xxxhdpi-icon.png"/>
<splash density="land-ldpi" src="resources/android/splash/drawable-land-ldpi-screen.png"/>
<splash density="land-mdpi" src="resources/android/splash/drawable-land-mdpi-screen.png"/>
<splash density="land-hdpi" src="resources/android/splash/drawable-land-hdpi-screen.png"/>
<splash density="land-xhdpi" src="resources/android/splash/drawable-land-xhdpi-screen.png"/>
<splash density="land-xxhdpi" src="resources/android/splash/drawable-land-xxhdpi-screen.png"/>
<splash density="land-xxxhdpi" src="resources/android/splash/drawable-land-xxxhdpi-screen.png"/>
<splash density="port-ldpi" src="resources/android/splash/drawable-port-ldpi-screen.png"/>
<splash density="port-mdpi" src="resources/android/splash/drawable-port-mdpi-screen.png"/>
<splash density="port-hdpi" src="resources/android/splash/drawable-port-hdpi-screen.png"/>
<splash density="port-xhdpi" src="resources/android/splash/drawable-port-xhdpi-screen.png"/>
<splash density="port-xxhdpi" src="resources/android/splash/drawable-port-xxhdpi-screen.png"/>
<splash density="port-xxxhdpi" src="resources/android/splash/drawable-port-xxxhdpi-screen.png"/>
</platform>
<plugin name="cordova-plugin-appavailability" spec="^0.4.2"/>
<plugin name="cordova-plugin-device" spec="^2.0.0"/>
<plugin name="cordova-plugin-splashscreen" spec="^5.0.0"/>
<plugin name="cordova-plugin-statusbar" spec="^2.4.2"/>
<plugin name="cordova-plugin-whitelist" spec="^1.3.3"/>
<plugin name="cordova-plugin-googlemaps" spec="git+https://github.com/mapsplugin/cordova-plugin-googlemaps.git#multiple_maps">
<variable name="API_KEY_FOR_ANDROID" value="androidkey"/>
<variable name="API_KEY_FOR_IOS" value="ioskey"/>
<variable name="PLAY_SERVICES_VERSION" value="15.0.1"/>
<variable name="ANDROID_SUPPORT_V4_VERSION" value="28.+"/>
</plugin>
<plugin name="cordova-plugin-market" spec="^1.2.0"/>
<plugin name="cordova-support-google-services" spec="^1.3.2"/>
<plugin name="cordova-plugin-calendar" spec="~5.1.5"/>
</widget>