fix(android): support TypeScript 7 builds

This commit is contained in:
Tommaso Casaburi
2026-07-14 15:02:30 +07:00
parent 8cf425717b
commit eadf048d5e
2 changed files with 24 additions and 28 deletions
+24
View File
@@ -0,0 +1,24 @@
{
"appId": "fivechan.android",
"appName": "5chan",
"webDir": "build",
"plugins": {
"CapacitorHttp": {
"enabled": false
},
"FileUploader": {
"enabled": true
},
"StatusBar": {
"style": "Dark",
"backgroundColor": "#000000",
"overlay": false
},
"EdgeToEdge": {
"backgroundColor": "#000000"
}
},
"server": {
"androidScheme": "https"
}
}
-28
View File
@@ -1,28 +0,0 @@
import { CapacitorConfig } from '@capacitor/cli';
const config: CapacitorConfig = {
appId: 'fivechan.android',
appName: '5chan',
webDir: 'build',
plugins: {
CapacitorHttp: {
enabled: false,
},
FileUploader: {
enabled: true,
},
StatusBar: {
style: 'Dark',
backgroundColor: '#000000',
overlay: false,
},
EdgeToEdge: {
backgroundColor: '#000000',
},
},
server: {
androidScheme: 'https',
},
};
export default config;