forked from pixelistik/ff-alias-list-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.xml
39 lines (38 loc) · 1.76 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
<?xml version='1.0' encoding='utf-8'?>
<widget id="de.pixelistik.ffaliaslist" version="9.9.9" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0" xmlns:android="http://schemas.android.com/apk/res/android">
<config-file platform="android" parent="/manifest" mode="merge">
<!-- Enable for Chrome remote debugging of WebView
<application android:debuggable="true" /> -->
</config-file>
<name>Freifunk Alias List</name>
<description>
Debug Freifunk wifi nodes with the popular Wifi Analyzer app - and get
the human readably node names displayed, instead of their MAC addresses.
</description>
<author email="code ät pixelistik.de" href="http://pixelistik.de">
pixelistik
</author>
<content src="index.html" />
<plugin name="cordova-plugin-whitelist" version="1" />
<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:*" />
<icon src="resources/app-icon_LDPI.png" density="ldpi" />
<icon src="resources/app-icon_MDPI.png" density="mdpi" />
<icon src="resources/app-icon_HDPI.png" density="hdpi" />
<icon src="resources/app-icon_XHDPI.png" density="xhdpi" />
<icon src="resources/app-icon_XXHDPI.png" density="xxhdpi" />
<icon src="resources/app-icon_XXXHDPI.png" density="xxxhdpi" />
</platform>
<platform name="ios">
<allow-intent href="itms:*" />
<allow-intent href="itms-apps:*" />
</platform>
<plugin name="cordova-plugin-file" spec="~3.0.0" />
</widget>