-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.xml
executable file
·58 lines (44 loc) · 1.91 KB
/
plugin.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"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
xmlns:android="http://schemas.android.com/apk/res/android"
id="siberian"
version="1.0.0">
<name>Siberian</name>
<description>Siberian App patcher.</description>
<license>Siberian CMS</license>
<keywords>cordova,siberian</keywords>
<!-- android -->
<platform name="android">
<!-- Whitelist for Google Play -->
<allow-intent href="market:*" />
<access origin="market:*" launch-external="yes" />
</platform>
<!-- ios -->
<platform name="ios">
<!-- Whitelist for App Store -->
<allow-intent href="itms:*" />
<allow-intent href="itms-apps:*" />
<access origin="itms:*" launch-external="yes" />
<access origin="itms-apps:*" launch-external="yes" />
<config-file target="*-Info.plist" parent="UIBackgroundModes">
<array>
<string>audio</string>
</array>
</config-file>
<config-file target="*-Info.plist" parent="NSLocationWhenInUseUsageDescription">
<string>Use the GPS for live navigation</string>
</config-file>
<config-file target="*-Info.plist" parent="NSCalendarsUsageDescription">
<string>Be notified of the App events</string>
</config-file>
<config-file target="*-Info.plist" parent="NSContactsUsageDescription">
<string>Share content with your contacts</string>
</config-file>
<config-file target="*-Info.plist" parent="NSMotionUsageDescription">
<string>Smart navigation with TaxiRide and other nice features</string>
</config-file>
<config-file target="*-Info.plist" parent="NFCReaderUsageDescription">
<string>Allow NFC Tag enabled features</string>
</config-file>
</platform>
</plugin>