forked from clement360/Cordova-Hello-JNI-Plugin
-
Notifications
You must be signed in to change notification settings - Fork 25
/
plugin.xml
117 lines (88 loc) · 5.24 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<?xml version="1.0" encoding="utf-8"?>
<plugin
xmlns="http://www.phonegap.com/ns/plugins/1.0"
xmlns:android="http://schemas.android.com/apk/res/android"
id="cordova-plugin-hello-c"
version="1.1.1">
<name>Hello</name>
<engines>
<engine name="cordova" version=">=3.4.0"/>
</engines>
<asset src="www/helloc.js" target="js/helloc.js"/>
<js-module src="www/helloc.js" name="helloc">
<clobbers target="helloc" />
</js-module>
<platform name="android">
<config-file parent="/*" target="res/xml/config.xml">
<feature name="HelloCPlugin">
<param name="android-package" value="com.example.HelloCPlugin"/>
</feature>
</config-file>
<!-- Java plugin API -->
<source-file src="src/android/HelloCPlugin.java" target-dir="app/src/main/java/com/example/"/>
<source-file src="src/android/HelloCJni.java" target-dir="app/src/main/java/com/example/" />
<!-- PRODUCTION - comment out source files below for debugging -->
<!-- Compiled C libraries - release binaries - device -->
<source-file src="src/android/libs/arm64-v8a/libhelloc.so" target-dir="app/src/main/jniLibs/arm64-v8a/" />
<source-file src="src/android/libs/armeabi-v7a/libhelloc.so" target-dir="app/src/main/jniLibs/armeabi-v7a/" />
<!-- Compiled C libraries - release binaries - emulator -->
<source-file src="src/android/libs/x86/libhelloc.so" target-dir="app/src/main/jniLibs/x86/" />
<source-file src="src/android/libs/x86_64/libhelloc.so" target-dir="app/src/main/jniLibs/x86_64/" />
<!-- Compiled C libraries - debug binaries - device -->
<source-file src="src/android/obj/local/armeabi-v7a/libhelloc.so" target-dir="app/obj/local/armeabi-v7a/" />
<source-file src="src/android/obj/local/arm64-v8a/libhelloc.so" target-dir="app/obj/local/arm64-v8a/" />
<!-- Compiled C libraries - debug binaries - emulator -->
<source-file src="src/android/obj/local/x86/libhelloc.so" target-dir="app/obj/local/x86/" />
<source-file src="src/android/obj/local/x86_64/libhelloc.so" target-dir="app/obj/local/x86_64/" />
<!-- END PRODUCTION -->
<!-- DEBUG - these files are not needed for production -->
<!-- Custom gradle file to setup NDK for debugging -->
<source-file src="src/android/build-extras.gradle" target-dir="."/>
<!-- NDK Make file for source references for C debugging -->
<source-file src="src/android/jni/Android.mk" target-dir="app/src/main/java/c/android/jni/"/>
<!-- C source files -->
<source-file src="src/android/jni/HelloCJni.c" target-dir="app/src/main/java/c/android/jni/"/>
<source-file src="src/common/hello.h" target-dir="app/src/main/java/c/common/"/>
<source-file src="src/common/hello.c" target-dir="app/src/main/java/c/common/"/>
<source-file src="src/common/mylib/mylib.h" target-dir="app/src/main/java/c/common/mylib"/>
<source-file src="src/common/mylib/mylib.c" target-dir="app/src/main/java/c/common/mylib"/>
<source-file src="src/common/mylib/mycomponent.h" target-dir="app/src/main/java/c/common/mylib"/>
<source-file src="src/common/mylib/mycomponent.c" target-dir="app/src/main/java/c/common/mylib"/>
<source-file src="src/common/mylib/parts/mypart.h" target-dir="app/src/main/java/c/common/mylib/parts"/>
<source-file src="src/common/mylib/parts/mypart.c" target-dir="app/src/main/java/c/common/mylib/parts"/>
<!-- END DEBUG -->
</platform>
<platform name="ios">
<config-file target="config.xml" parent="/widget">
<feature name="HelloCPlugin">
<param name="ios-package" value="HelloCPlugin" />
</feature>
</config-file>
<!-- Objective-C plugin API -->
<header-file src="src/ios/HelloCPlugin.h" target-dir="HelloCPlugin"/>
<source-file src="src/ios/HelloCPlugin.m" target-dir="HelloCPlugin"/>
<!-- C source files -->
<header-file src="src/ios/c_getArch.h" target-dir="HelloCPlugin"/>
<source-file src="src/ios/c_getArch.c" target-dir="HelloCPlugin"/>
<header-file src="src/common/hello.h" target-dir="HelloCPlugin"/>
<source-file src="src/common/hello.c" target-dir="HelloCPlugin"/>
<!-- PRODUCTION - comment out source files below for debugging -->
<!-- pre-compiled library as a framework -->
<!-- Compiled C libraries -->
<source-file src="src/ios/libs/libmylib.a" framework="true" />
<!-- C header files -->
<header-file src="src/ios/libs/headers/mylib.h" target-dir="HelloCPlugin"/>
<header-file src="src/ios/libs/headers/mycomponent.h" target-dir="HelloCPlugin"/>
<header-file src="src/ios/libs/headers/mypart.h" target-dir="HelloCPlugin"/>
<!-- END PRODUCTION -->
<!-- DEBUG - these files are not needed for production - comment in for debugging -->
<!-- C source files -->
<!--<header-file src="src/common/mylib/mylib.h" target-dir="HelloCPlugin"/>-->
<!--<source-file src="src/common/mylib/mylib.c" target-dir="HelloCPlugin"/>-->
<!--<header-file src="src/common/mylib/mycomponent.h" target-dir="HelloCPlugin"/>-->
<!--<source-file src="src/common/mylib/mycomponent.c" target-dir="HelloCPlugin"/>-->
<!--<header-file src="src/common/mylib/parts/mypart.h" target-dir="HelloCPlugin"/>-->
<!--<source-file src="src/common/mylib/parts/mypart.c" target-dir="HelloCPlugin"/>-->
<!-- END DEBUG -->
</platform>
</plugin>