forked from greg-laughlin-hs/KeychainPlugin
-
Notifications
You must be signed in to change notification settings - Fork 1
/
plugin.xml
39 lines (30 loc) · 1.42 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
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
id="com.shazron.cordova.plugin.keychainutil"
version="1.0.0">
<name>KeyChain Plugin for Cordova iOS</name>
<description>This plugin allows your app access to the iOS KeyChain from Cordova. See: https://developer.apple.com/library/mac/documentation/security/conceptual/keychainServConcepts/iPhoneTasks/iPhoneTasks.html</description>
<license>Apache 2.0</license>
<keywords>keychain</keywords>
<engines>
<engine name="cordova" version=">=2.2.0" />
</engines>
<asset src="www/keychain.js" target="plugins/keychain.js" />
<js-module src="www/keychain.js" name="Keychain">
<clobbers target="window.Keychain" />
</js-module>
<!-- ios -->
<platform name="ios">
<!-- feature tag in config.xml -->
<config-file target="config.xml" parent="/widget">
<feature name="Keychain">
<param name="ios-package" value="CDVKeychain"/>
</feature>
</config-file>
<header-file src="src/ios/CDVKeychain.h" />
<header-file src="src/ios/SFHFKeychainUtils/SFHFKeychainUtils.h"/>
<source-file src="src/ios/CDVKeychain.m"/>
<source-file src="src/ios/SFHFKeychainUtils/SFHFKeychainUtils.m" compiler-flags="-fno-objc-arc" />
<framework src="Security.framework" />
</platform>
</plugin>