-
Notifications
You must be signed in to change notification settings - Fork 947
Expand file tree
/
Copy pathplugin.xml
More file actions
46 lines (37 loc) · 1.94 KB
/
plugin.xml
File metadata and controls
46 lines (37 loc) · 1.94 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
35
36
37
38
39
40
41
42
43
44
45
46
<?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.foxdebug.acode.rk.exec.terminal" version="1.0.0">
<name>Terminal</name>
<js-module name="Terminal" src="www/Terminal.js">
<clobbers target="window.Terminal" />
</js-module>
<!-- executor api -->
<js-module name="Executor" src="www/Executor.js">
<clobbers target="window.Executor" />
</js-module>
<platform name="android">
<config-file parent="/*" target="res/xml/config.xml">
<feature name="Executor">
<param name="android-package" value="com.foxdebug.acode.rk.exec.terminal.Executor" />
</feature>
</config-file>
<config-file parent="/*" target="AndroidManifest.xml" />
<source-file src="src/android/Executor.java" target-dir="src/com/foxdebug/acode/rk/exec/terminal" />
<source-file src="src/android/AlpineDocumentProvider.java" target-dir="src/com/foxdebug/acode/rk/exec/terminal" />
<source-file src="scripts/init-sandbox.sh" target-dir="assets"/>
<source-file src="scripts/init-alpine.sh" target-dir="assets"/>
<config-file target="AndroidManifest.xml" parent="/manifest"></config-file>
<config-file target="AndroidManifest.xml" parent="./application">
<provider
android:name="com.foxdebug.acode.rk.exec.terminal.AlpineDocumentProvider"
android:authorities="${applicationId}.documents"
android:exported="true"
android:grantUriPermissions="true"
android:icon="@mipmap/ic_launcher"
android:permission="android.permission.MANAGE_DOCUMENTS">
<intent-filter>
<action android:name="android.content.action.DOCUMENTS_PROVIDER" />
</intent-filter>
</provider>
</config-file>
</platform>
</plugin>