-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.xml
26 lines (24 loc) · 928 Bytes
/
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
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0" id="cordova-plugin-plister" version="1.0.0">
<name>Plister</name>
<description>Cordova Plister Plugin</description>
<license>MIT</license>
<keywords>cordova,plister</keywords>
<!-- ios -->
<platform name="ios">
<!--Add your own plist entries like so-->
<!--<config-file target="*-Info.plist" parent="CFBundleURLTypes">-->
<!--<array>-->
<!--<dict>-->
<!--<key>PackageName</key>-->
<!--<string>$PACKAGE_NAME</string>-->
<!--</dict>-->
<!--</array>-->
<!--</config-file>-->
<!--Here is the one I needed-->
<config-file target="*-Info.plist" parent="ITSAppUsesNonExemptEncryption">
<key>ITSAppUsesNonExemptEncryption</key>
<false/>
</config-file>
</platform>
</plugin>