forked from grausof/cordova-plugin-secure-storage
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.xml
More file actions
60 lines (47 loc) · 2.42 KB
/
Copy pathplugin.xml
File metadata and controls
60 lines (47 loc) · 2.42 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
54
55
56
57
58
59
60
<?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-secure-storage"
version="4.1.13">
<name>@thing-it/cordova-plugin-secure-storage</name>
<author>Marvin Erkes</author>
<description>
Secure, encrypted storage for cordova apps in iOS and Android.
</description>
<license>MIT</license>
<keywords>keychain, encryption, security</keywords>
<js-module src="www/securestorage.js" name="SecureStorage">
<clobbers target="cordova.plugins.SecureStorage"/>
</js-module>
<engines>
<engine name="cordova" version=">=3.0.0" />
</engines>
<platform name="ios">
<config-file target="config.xml" parent="/*">
<feature name="SecureStorage">
<param name="ios-package" value="SecureStorage"/>
<param name="onload" value="true" />
</feature>
</config-file>
<source-file src="src/ios/SecureStorage.m" />
<header-file src="src/ios/SecureStorage.h" />
<source-file src="src/ios/SAMKeychain/SAMKeychain.m" />
<header-file src="src/ios/SAMKeychain/SAMKeychain.h" />
<source-file src="src/ios/SAMKeychain/SAMKeychainQuery.m" />
<header-file src="src/ios/SAMKeychain/SAMKeychainQuery.h" />
<resource-file src="src/ios/SAMKeychain/SAMKeychain.bundle" />
<framework src="Security.framework" />
</platform>
<platform name="android">
<config-file target="res/xml/config.xml" parent="/*">
<feature name="SecureStorage" >
<param name="android-package" value="com.thingit.plugins.securestorage.SecureStorage"/>
<param name="onload" value="true" />
</feature>
</config-file>
<source-file src="src/android/com/thingit/plugins/securestorage/SecureStorage.java" target-dir="src/com/thingit/plugins/securestorage/" />
<source-file src="src/android/com/thingit/plugins/securestorage//RSA.java" target-dir="src/com/thingit/plugins/securestorage/" />
<source-file src="src/android/com/thingit/plugins/securestorage/AES.java" target-dir="src/com/thingit/plugins/securestorage/" />
<source-file src="src/android/com/thingit/plugins/securestorage/SharedPreferencesHandler.java" target-dir="src/com/thingit/plugins/securestorage/" />
</platform>
</plugin>