-
Notifications
You must be signed in to change notification settings - Fork 4
/
plugin.xml
57 lines (41 loc) · 2.13 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
50
51
52
53
54
55
56
57
<?xml version="1.0" encoding="utf-8"?>
<plugin xmlns="http://www.phonegap.com/ns/plugins/1.0"
id="cordova-plugin-litewallet"
version="0.1.0">
<name>LiteWallet</name>
<engines>
<engine name="cordova" version=">=3.4.0"/>
</engines>
<asset src="www/litewallet.js" target="js/litewallet.js"/>
<js-module src="www/litewallet.js" name="litewallet">
<clobbers target="LiteWallet" />
</js-module>
<platform name="android">
<config-file target="res/xml/config.xml" parent="/*">
<feature name="LiteWallet">
<param name="android-package" value="com.litewallet.plugin.LiteWallet"/>
</feature>
</config-file>
<source-file src="src/android/LiteWallet.java" target-dir="src/com/rust/plugin/"/>
<source-file src="res/saplingoutput" target-dir="resources"/>
<source-file src="res/saplingspend" target-dir="resources"/>
<source-file src="res/commons-io-2.7.jar" target-dir="libs/"/>
<source-file src="native/android/litewallet-jni/src/com/rust/litewalletjni/LiteWalletJni.java" target-dir="src/com/rust/litewalletjni/"/>
<source-file src="native/android/litewallet-jni/libs/arm64-v8a/liblitewallet-jni.so" target-dir="libs/arm64-v8a" />
<source-file src="native/android/litewallet-jni/libs/x86/liblitewallet-jni.so" target-dir="libs/x86" />
<source-file src="native/android/litewallet-jni/libs/armeabi-v7a/liblitewallet-jni.so" target-dir="libs/armeabi-v7a" />
</platform>
<platform name="ios">
<config-file target="config.xml" parent="/widget">
<feature name="LiteWallet">
<param name="ios-package" value="HWPLiteWallet" />
</feature>
</config-file>
<header-file src="src/ios/HWPLiteWallet.h" target-dir="LiteWalletPlugin"/>
<source-file src="src/ios/HWPLiteWallet.m" target-dir="LiteWalletPlugin"/>
<header-file src="native/rust/src/litewallet_rust.h" target-dir="LiteWalletPlugin"/>
<source-file src="native/ios/liblitewallet_rust-ios.a" framework="true" target-dir="LiteWalletPlugin" compiler-flags="-fno-objc-arc"/>
<framework src="Foundation.framework" />
<framework src="Security.framework" />
</platform>
</plugin>