Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions config.xml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
<preference name="AndroidLaunchMode" value="singleTask" />
<preference name="prerendered-icon" value="false" />
<preference name="androidxEnabled" value="true" />
<preference name="android-targetSdkVersion" value="35" />


<edit-config file="app/src/main/AndroidManifest.xml" mode="merge" target="/manifest/application">
Expand Down
2 changes: 1 addition & 1 deletion hooks/post-process.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ function patchTargetSdkVersion() {

if (sdkRegex.test(content)) {
const fdroid = fs.readFileSync(path.join(prefix,'fdroid.bool'), 'utf-8').trim();
var api = "34"
var api = "35"
if(fdroid == "true"){
api = "28"
}
Expand Down
64 changes: 47 additions & 17 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 4 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@
"cordova-plugin-websocket": {},
"cordova-plugin-buildinfo": {},
"cordova-plugin-system": {},
"com.foxdebug.acode.rk.exec.terminal": {}
"com.foxdebug.acode.rk.exec.terminal": {},
"com.foxdebug.acode.rk.exec.proot": {}
},
"platforms": [
"android"
Expand All @@ -63,8 +64,9 @@
"@types/url-parse": "^1.4.11",
"autoprefixer": "^10.4.19",
"babel-loader": "^9.1.3",
"com.foxdebug.acode.rk.exec.proot": "file:src/plugins/proot",
"com.foxdebug.acode.rk.exec.terminal": "file:src/plugins/terminal",
"cordova-android": "^13.0.0",
"cordova-android": "^14.0.1",
"cordova-clipboard": "^1.3.0",
"cordova-plugin-advanced-http": "^3.3.1",
"cordova-plugin-browser": "file:src/plugins/browser",
Expand Down
1 change: 1 addition & 0 deletions res/android/values/themes.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,6 @@
<item name="windowSplashScreenAnimatedIcon">@drawable/ic_launcher_foreground</item>
<item name="windowSplashScreenAnimationDuration">200</item>
<item name="postSplashScreenTheme">@style/Theme.AppCompat.DayNight.NoActionBar</item>
<item name="android:windowOptOutEdgeToEdgeEnforcement">true</item>
</style>
</resources>
10 changes: 5 additions & 5 deletions www/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -165,17 +165,17 @@

<title>Acode</title>
<!--styles-->
<link rel="stylesheet" href="./css/build/218.css">
<link rel="stylesheet" href="./css/build/32.css">
<link rel="stylesheet" href="./css/build/383.css">
<link rel="stylesheet" href="./css/build/53.css">
<link rel="stylesheet" href="./css/build/609.css">
<link rel="stylesheet" href="./css/build/about.css">
<link rel="stylesheet" href="./css/build/customTheme.css">
<link rel="stylesheet" href="./css/build/donate.css">
<link rel="stylesheet" href="./css/build/fileBrowser.css">
<link rel="stylesheet" href="./css/build/main.css">
<link rel="stylesheet" href="./css/build/plugins.css">
<link rel="stylesheet" href="./css/build/src_pages_quickTools_quickTools_js.css">
<link rel="stylesheet" href="./css/build/src_sidebarApps_extensions_index_js.css">
<link rel="stylesheet" href="./css/build/src_sidebarApps_files_index_js.css">
<link rel="stylesheet" href="./css/build/src_sidebarApps_notification_index_js.css">
<link rel="stylesheet" href="./css/build/src_sidebarApps_searchInFiles_index_js.css">
<link rel="stylesheet" href="./css/build/themeSetting.css">
<!--styles_end-->
</head>
Expand Down