This repository has been archived by the owner on Mar 27, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathplugin.xml
49 lines (49 loc) · 2.25 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
<?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-safe" version="2.0.1">
<name>Safe</name>
<description>Simple file crypto for Cordova.</description>
<license>MIT</license>
<keywords>cordova,file,encrypt,decrypt</keywords>
<repo>https://github.com/disusered/cordova-safe</repo>
<issue>https://github.com/disusered/cordova-safe/issues</issue>
<engines>
<engine name="cordova-android" version=">=4" />
<engine name="cordova-plugman" version=">=4.2.0" /><!-- needed for gradleReference support -->
</engines>
<js-module name="safe" src="www/disusered.safe.js">
<merges target="cordova.plugins.disusered"/>
</js-module>
<platform name="android">
<framework src="src/android/conceal.gradle" custom="true" type="gradleReference" />
<source-file src="src/android/Safe.java" target-dir="src/com/disusered"/>
<config-file target="res/xml/config.xml" parent="/*" >
<feature name="Safe">
<param name="android-package" value="com.disusered.Safe"/>
</feature>
</config-file>
<config-file target="AndroidManifest.xml" parent="/manifest">
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
</config-file>
</platform>
<platform name="ios">
<config-file parent="/*" target="config.xml">
<feature name="Safe">
<param name="ios-package" value="Safe"/>
</feature>
</config-file>
<framework src="Foundation.framework" />
<framework src="Security.framework" />
<source-file src="src/ios/Safe.m"/>
<header-file src="src/ios/Safe.h"/>
<header-file src="src/ios/RNCryptor/RNCryptor+Private.h" />
<header-file src="src/ios/RNCryptor/RNCryptor-Prefix.pch" />
<header-file src="src/ios/RNCryptor/RNCryptor.h" />
<source-file src="src/ios/RNCryptor/RNCryptor.m" />
<header-file src="src/ios/RNCryptor/RNCryptorEngine.h" />
<source-file src="src/ios/RNCryptor/RNCryptorEngine.m" />
<header-file src="src/ios/RNCryptor/RNDecryptor.h" />
<source-file src="src/ios/RNCryptor/RNDecryptor.m" />
<header-file src="src/ios/RNCryptor/RNEncryptor.h" />
<source-file src="src/ios/RNCryptor/RNEncryptor.m" />
</platform>
</plugin>