-
Notifications
You must be signed in to change notification settings - Fork 4
/
plugin.xml
48 lines (39 loc) · 1.69 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
<?xml version='1.0' encoding='utf-8'?>
<plugin id="cordova-plugin-cpp-bridge" version="0.0.7"
xmlns="http://apache.org/cordova/ns/plugins/1.0" xmlns:android="http://schemas.android.com/apk/res/android">
<name>CordovaCppBridge</name>
<platform name="osx">
<config-file parent="/*" target="config.xml">
<feature name="CordovaCppBridge">
<param name="osx-package" value="CDVCppBridge" />
</feature>
</config-file>
<js-module name="CordovaCppBridge" src="www/CDVCppBridge.js">
<clobbers target="cpp" />
</js-module>
</platform>
<platform name="ios">
<config-file parent="/*" target="config.xml">
<feature name="CordovaCppBridge">
<param name="ios-package" value="CDVCppBridge" />
</feature>
</config-file>
<js-module name="CordovaCppBridge" src="www/CDVCppBridge.js">
<clobbers target="cpp" />
</js-module>
</platform>
<platform name="android">
<config-file parent="/*" target="res/xml/config.xml">
<feature name="CordovaCppBridge">
<param name="android-package" value="com.tkyaji.cordova.CDVCppBridge" />
</feature>
</config-file>
<config-file parent="/*" target="AndroidManifest.xml"></config-file>
<js-module name="CordovaCppBridge" src="www/CDVCppBridge.js">
<clobbers target="cpp" />
</js-module>
</platform>
<hook type="after_plugin_add" src="hooks/after_plugin_add.js" />
<hook type="before_plugin_rm" src="hooks/before_plugin_rm.js" />
<hook type="after_prepare" src="hooks/after_prepare.js" />
</plugin>