forked from infil00p/cordova-mozillaview-engine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.xml
53 lines (43 loc) · 2.92 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
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
id="org.apache.cordova.engine.mozillaview"
version="0.0.1-dev">
<name>MozillaView Engine</name>
<description>Mozilla GeckoView Engine</description>
<license>Apache 2.0</license>
<keywords>cordova,firefox,gecko,webview</keywords>
<repo>https://github.com/infil00p/cordova-mozillaview-engine.git</repo>
<issue></issue>
<engines>
<engine name="cordova-android" version=">=4.0.0-dev" />
</engines>
<js-module src="www/MozExec.js" name="MozExec">
<uses />
</js-module>
<!-- android -->
<platform name="android">
<config-file target="res/xml/config.xml" parent="/*">
<preference name="webView" value="org.apache.cordova.engine.mozilla.MozillaView" />
</config-file>
<source-file src="src/android/MozillaView.java" target-dir="src/org/apache/cordova/engine/mozilla/" />
<source-file src="src/android/CordovaGeckoViewChrome.java" target-dir="src/org/apache/cordova/engine/mozilla/" />
<source-file src="src/android/CordovaGeckoViewContent.java" target-dir="src/org/apache/cordova/engine/mozilla/" />
<resource-file src="libs/assets/armeabi-v7a/libfreebl3.so" target="assets/armeabi-v7a/libfreebl3.so" />
<resource-file src="libs/assets/armeabi-v7a/libmozalloc.so" target="assets/armeabi-v7a/libmozalloc.so" />
<resource-file src="libs/assets/armeabi-v7a/libnss3.so" target="assets/armeabi-v7a/libnss3.so" />
<resource-file src="libs/assets/armeabi-v7a/libnssckbi.so" target="assets/armeabi-v7a/libnssckbi.so" />
<resource-file src="libs/assets/armeabi-v7a/libomxplugin.so" target="assets/armeabi-v7a/libomxplugin.so" />
<resource-file src="libs/assets/armeabi-v7a/libomxplugingb.so" target="assets/armeabi-v7a/libomxplugingb.so" />
<resource-file src="libs/assets/armeabi-v7a/libomxplugingb235.so" target="assets/armeabi-v7a/libomxplugingb235.so" />
<resource-file src="libs/assets/armeabi-v7a/libomxpluginhc.so" target="assets/armeabi-v7a/libomxpluginhc.so" />
<resource-file src="libs/assets/armeabi-v7a/libomxpluginkk.so" target="assets/armeabi-v7a/libomxpluginkk.so" />
<resource-file src="libs/assets/armeabi-v7a/libsoftokn3.so" target="assets/armeabi-v7a/libsoftokn3.so" />
<resource-file src="libs/assets/armeabi-v7a/libxul.so" target="assets/armeabi-v7a/libxul.so" />
<resource-file src="libs/assets/omni.ja" target="assets/omni.ja" />
<!-- This is a standard Android Support Library -->
<resource-file src="libs/android-support-v4.jar" target="libs/android-support-v4.jar" />
<!-- This JS file is totally separate from the JS modules used in Cordova -->
<resource-file src="www/android/mozilla.js" target="assets/www/bridge/mozilla.js" />
<framework src="libs/geckoview_library" custom="true" />
</platform>
</plugin>