-
Notifications
You must be signed in to change notification settings - Fork 113
/
plugin.xml
51 lines (37 loc) · 1.79 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
<?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="cordova-plugin-edit-plist-file"
version="0.0.3">
<name>Edit Plist file</name>
<description>
A cordova "plugin" that helps you indicate the modifications on the iOS's *-info.plist file.
So it avoids you to directly edit the *-info.plist file.
For example it is used to whitelist some schemes for ios9.
This plugin was initially created to avoid iOS 9 problems that prevent opening other apps from your own app because some used plugins aren't updated to take into consideration the new specification for iOS 9.
</description>
<author>Haythem OUEDERNI - haythem@nirbyapp.com </author>
<keywords>cordova,whitelist,ios9,ecosystem:cordova,ordova-ios</keywords>
<license>MIT</license>
<engines>
<!-- Requires > 3.3.* because of the custom Framework tag for iOS [CB-5238] -->
<!-- Requires > 3.5.0 because of the custom Framework tag for Android [CB-6698] -->
<engine name="cordova" version=">=3.5.0" />
</engines>
<!-- ios -->
<platform name="ios">
<!-- iOS9 whitelisting -->
<config-file target="*-Info.plist" parent="LSApplicationQueriesSchemes">
<array>
<string>twitter</string>
<string>fb</string>
<string>whatsapp</string>
<string>itms-apps</string>
<string>youtube</string>
<string>soundcloud</string>
<string>fb-messenger</string>
<string>instagram</string>
</array>
</config-file>
</platform>
</plugin>