forked from naveed-ahmad/cordova-plugin-crypt-assets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugin.xml
executable file
·36 lines (30 loc) · 1.17 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
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
id="cordova-plugin-crypt-assets"
version="0.2.0">
<name>cordova-plugin-crypt-assets</name>
<description>Cordova plugin to encrypt/decrypt the source assets</description>
<author>@tkyaji, @qhng, @naveed-ahmad</author>
<license>Apache 2.0 License</license>
<platform name="android">
<config-file target="config.xml" parent="/*">
<feature name="DecryptResourceNG">
<param name="android-package" value="com.qhng.cordova.DecryptResourceNG" />
<param name="onload" value="true" />
</feature>
</config-file>
<source-file src="src/android/com/qhng/cordova/DecryptResourceNG.java" target-dir="src/com/qhng/cordova" />
</platform>
<platform name="ios">
</platform>
<cryptfiles>
<include>
<file regex="(bundle|index).(htm|html|js)$" />
</include>
<exclude>
</exclude>
<!-- release laways none -->
<obfuscate value="release" />
</cryptfiles>
<hook type="after_prepare" src="hooks/after_prepare.js" />
</plugin>