-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconfig.xml
More file actions
44 lines (44 loc) · 2.53 KB
/
Copy pathconfig.xml
File metadata and controls
44 lines (44 loc) · 2.53 KB
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
<?xml version="1.0" encoding="utf-8" ?>
<widget id="app.emux.proxi" version="1.0.0" xmlns="http://www.w3.org/ns/widgets" xmlns:gap="http://phonegap.com/ns/1.0">
<name>Proxi</name>
<description>
The mobile app that ensures that you keep your distance.
</description>
<author email="hi@emux.app" href="https://emux.app">
Emux Technologies
</author>
<content src="index.html" />
<preference name="DisallowOverscroll" value="true" />
<preference name="android-minSdkVersion" value="14" />
<preference name="android-targetSdkVersion" value="28" />
<plugin name="cordova-plugin-battery-status" source="npm" spec="~1.2.4" />
<plugin name="cordova-plugin-device" source="npm" spec="~1.1.6" />
<plugin name="cordova-plugin-dialogs" source="npm" spec="~1.3.3" />
<plugin name="cordova-plugin-file" source="npm" spec="~4.3.3" />
<plugin name="cordova-plugin-geolocation" source="npm" spec="~2.4.3" />
<plugin name="cordova-plugin-globalization" source="npm" spec="~1.0.7" />
<plugin name="cordova-plugin-inappbrowser" source="npm" spec="~1.7.1" />
<plugin name="cordova-plugin-network-information" source="npm" spec="~1.3.3" />
<plugin name="cordova-plugin-vibration" source="npm" spec="~2.1.5" />
<plugin name="cordova-plugin-whitelist" source="npm" spec="~1.3.4" />
<plugin name="cordova-plugin-insomnia" />
<icon src="icon.png" />
<preference name="target-device" value="handset" />
<preference name="orientation" value="portrait" />
<access origin="*" />
<allow-intent href="*" />
<allow-navigation href="*" />
<platform name="android">
<allow-intent href="market:*" />
<resource-file src="res/values/colors.xml" target="/app/src/main/res/values/colors.xml" />
<icon density="mdpi" background="@color/background" foreground="res/android/mipmap-mdpi/ic_launcher_foreground.png" />
<icon density="hdpi" background="@color/background" foreground="res/android/mipmap-hdpi/ic_launcher_foreground.png" />
<icon density="xhdpi" background="@color/background" foreground="res/android/mipmap-xhdpi/ic_launcher_foreground.png" />
<icon density="xxhdpi" background="@color/background" foreground="res/android/mipmap-xxhdpi/ic_launcher_foreground.png" />
<icon density="xxxhdpi" background="@color/background" foreground="res/android/mipmap-xxxhdpi/ic_launcher_foreground.png" />
</platform>
<platform name="ios">
<allow-intent href="itms:*" />
<allow-intent href="itms-apps:*" />
</platform>
</widget>