Skip to content

Commit 91452da

Browse files
committed
Change app name and codename for plugins
1 parent 35a2768 commit 91452da

File tree

6 files changed

+31
-17
lines changed

6 files changed

+31
-17
lines changed

package-lock.json

Lines changed: 14 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,12 @@
3636
"cordova-sqlite-storage": {},
3737
"cordova-plugin-websocket": {},
3838
"cordova-plugin-buildinfo": {},
39-
"com.foxdebug.acode.rk.exec.terminal": {},
40-
"com.foxdebug.acode.rk.exec.proot": {},
39+
"com.foxdebug.acodex.rk.exec.terminal": {},
40+
"com.foxdebug.acodex.rk.exec.proot": {},
4141
"cordova-plugin-browser": {},
42-
"cordova-plugin-system": {}
42+
"cordova-plugin-system": {},
43+
"com.foxdebug.acode.rk.exec.terminal": {},
44+
"com.foxdebug.acode.rk.exec.proot": {}
4345
},
4446
"platforms": [
4547
"android"
@@ -66,6 +68,8 @@
6668
"babel-loader": "^10.0.0",
6769
"com.foxdebug.acode.rk.exec.proot": "file:src/plugins/proot",
6870
"com.foxdebug.acode.rk.exec.terminal": "file:src/plugins/terminal",
71+
"com.foxdebug.acodex.rk.exec.proot": "file:src/plugins/proot",
72+
"com.foxdebug.acodex.rk.exec.terminal": "file:src/plugins/terminal",
6973
"cordova-android": "^14.0.1",
7074
"cordova-clipboard": "^1.3.0",
7175
"cordova-plugin-advanced-http": "^3.3.1",

src/plugins/proot/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
2-
"name": "com.foxdebug.acode.rk.exec.proot",
2+
"name": "com.foxdebug.acodex.rk.exec.proot",
33
"version": "1.0.0",
44
"description": "Proot stuff",
55
"cordova": {
6-
"id": "com.foxdebug.acode.rk.exec.proot",
6+
"id": "com.foxdebug.acodex.rk.exec.proot",
77
"platforms": [
88
"android"
99
]

src/plugins/proot/plugin.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<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.proot" version="1.0.0">
2+
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0" xmlns:android="http://schemas.android.com/apk/res/android" id="com.foxdebug.acodex.rk.exec.proot" version="1.0.0">
33
<name>Proot</name>
44

55

src/plugins/terminal/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
2-
"name": "com.foxdebug.acode.rk.exec.terminal",
2+
"name": "com.foxdebug.acodex.rk.exec.terminal",
33
"version": "1.0.0",
44
"description": "Terminal stuff",
55
"cordova": {
6-
"id": "com.foxdebug.acode.rk.exec.terminal",
6+
"id": "com.foxdebug.acodex.rk.exec.terminal",
77
"platforms": [
88
"android"
99
]

src/plugins/terminal/plugin.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<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">
2+
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0" xmlns:android="http://schemas.android.com/apk/res/android" id="com.foxdebug.acodex.rk.exec.terminal" version="1.0.0">
33
<name>Terminal</name>
44

55
<js-module name="Terminal" src="www/Terminal.js">
@@ -14,13 +14,13 @@
1414
<platform name="android">
1515
<config-file parent="/*" target="res/xml/config.xml">
1616
<feature name="Executor">
17-
<param name="android-package" value="com.foxdebug.acode.rk.exec.terminal.Executor" />
17+
<param name="android-package" value="com.foxdebug.acodex.rk.exec.terminal.Executor" />
1818
</feature>
1919
</config-file>
2020
<config-file parent="/*" target="AndroidManifest.xml" />
2121

22-
<source-file src="src/android/Executor.java" target-dir="src/com/foxdebug/acode/rk/exec/terminal" />
23-
<source-file src="src/android/AlpineDocumentProvider.java" target-dir="src/com/foxdebug/acode/rk/exec/terminal" />
22+
<source-file src="src/android/Executor.java" target-dir="src/com/foxdebug/acodex/rk/exec/terminal" />
23+
<source-file src="src/android/AlpineDocumentProvider.java" target-dir="src/com/foxdebug/acodex/rk/exec/terminal" />
2424

2525
<source-file src="scripts/init-sandbox.sh" target-dir="assets"/>
2626
<source-file src="scripts/init-alpine.sh" target-dir="assets"/>
@@ -29,7 +29,7 @@
2929

3030
<config-file target="AndroidManifest.xml" parent="./application">
3131
<provider
32-
android:name="com.foxdebug.acode.rk.exec.terminal.AlpineDocumentProvider"
32+
android:name="com.foxdebug.acodex.rk.exec.terminal.AlpineDocumentProvider"
3333
android:authorities="${applicationId}.documents"
3434
android:exported="true"
3535
android:grantUriPermissions="true"

0 commit comments

Comments
 (0)