-
Notifications
You must be signed in to change notification settings - Fork 16
/
plugin.xml
26 lines (22 loc) · 1.06 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
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0" xmlns:android="http://schemas.android.com/apk/res/android" id="com.ludei.webview.plus" version="2.4.3">
<name>Webview+</name>
<author>Ludei</author>
<!-- android -->
<platform name="android">
<source-file src="android/assets/content_shell.pak" target-dir="assets/" />
<source-file src="android/assets/icudtl.dat" target-dir="assets/" />
<config-file target="AndroidManifest.xml" parent="/manifest/application">
<service android:name="org.chromium.content.app.SandboxedProcessService0"
android:process=":sandboxed_process0"
android:permission="org.chromium.content_shell.permission.SANDBOX"
android:isolatedProcess="true"
android:exported="false" />
<service android:name="org.chromium.content.app.SandboxedProcessService1"
android:process=":sandboxed_process1"
android:permission="org.chromium.content_shell.permission.SANDBOX"
android:isolatedProcess="true"
android:exported="false" />
</config-file>
</platform>
</plugin>