-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.xml
More file actions
34 lines (27 loc) · 1.64 KB
/
plugin.xml
File metadata and controls
34 lines (27 loc) · 1.64 KB
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
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0" xmlns:rim="http://www.blackberry.com/ns/widgets" xmlns:android="http://schemas.android.com/apk/res/android" id="cordova-plugin-servo-webview" version="1.0.0">
<name>cordova-plugin-servo-webview</name>
<description>Servo Web View Engine Plugin</description>
<author>Niklas Merz</author>
<license>Apache-2.0</license>
<keywords>cordova,servo</keywords>
<repo>https://github.com/niklasmerz/cordova-plugin-servo-webview</repo>
<platform name="android">
<config-file target="config.xml" parent="/*">
<preference name="android-minSdkVersion" value="30" />
<preference name="webView" value="com.merzlabs.cordova.webview.ServoWebViewEngine"/>
<feature name="ServoWebView">
<param name="android-package" value="com.merzlabs.cordova.webview.ServoWebView"/>
</feature>
</config-file>
<!-- WebSocket Bridge Module - runs immediately to intercept prompt -->
<js-module src="www/servo-bridge.js" name="ServoBridge">
<runs/>
</js-module>
<source-file src="src/android/com/merzlabs/cordova/webview/ServoWebViewEngine.java" target-dir="src/com/merzlabs/cordova/webview"/>
<source-file src="src/android/com/merzlabs/cordova/webview/CordovaServoView.java" target-dir="src/com/merzlabs/cordova/webview"/>
<source-file src="src/android/com/merzlabs/cordova/webview/ServoServer.java" target-dir="src/com/merzlabs/cordova/webview"/>
<framework src="src/android/servo.gradle" custom="true" type="gradleReference" />
<lib-file src="libs/servoview.aar" arch="device" />
</platform>
</plugin>