forked from Telerik-Verified-Plugins/Keychain-Sharing
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathplugin.xml
More file actions
53 lines (38 loc) · 1.49 KB
/
Copy pathplugin.xml
File metadata and controls
53 lines (38 loc) · 1.49 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
45
46
47
48
49
50
51
52
53
<?xml version='1.0' encoding='UTF-8'?>
<plugin
id="cordova-plugin-keychainsharing"
version="1.0.2"
xmlns="http://apache.org/cordova/ns/plugins/1.0">
<name>Keychain Sharing</name>
<author>Eddy Verbruggen / Telerik</author>
<description>
Cordova plugin to add the Keychain Sharing entitlement.
And a few methods for interacting with the Keychain.
</description>
<keywords>Keychain, Keychain Sharing, Keychain Sharing</keywords>
<license>MIT</license>
<engines>
<engine name="cordova" version=">=3.0.0"/>
</engines>
<js-module name="KeychainSharing" src="www/KeychainSharing.js">
<clobbers target="KeychainSharing"/>
</js-module>
<preference name="KEYCHAIN_ACCESS_GROUP" />
<platform name="ios">
<config-file parent="/*" target="config.xml">
<feature name="KeychainSharing">
<param name="ios-package" value="KeychainSharing"/>
</feature>
</config-file>
<config-file target="*-Info.plist" parent="KeychainSharingBundleID">
<string>$KEYCHAIN_ACCESS_GROUP</string>
</config-file>
<header-file src="src/ios/lib/UICKeyChainStore.h"/>
<source-file src="src/ios/lib/UICKeyChainStore.m"/>
<header-file src="src/ios/KeychainSharing.h"/>
<source-file src="src/ios/KeychainSharing.m"/>
<framework src="Security.framework"/>
<hook type="after_plugin_install" src="src/ios/hooks/prerequisites.js"/>
<hook type="after_plugin_install" src="src/ios/hooks/install_entitlements.js"/>
</platform>
</plugin>