Some checks failed
Build APK / build-apk (push) Failing after 11m29s
SvelteKit + Capacitor 6 Netzwerk-Diagnose-App: - Tool-Plattform (IP-Scan, Port, Ping, WLAN, DHCP, SNMP, Traceroute, Stresstest, iperf) - Offline-First SQLite-Cache + idempotenter Dolibarr-Sync - Natives Kotlin-Plugin NetDiagScanner (ARP, Ping, Ports, WLAN, DHCP, SNMP, Traceroute) - Backbutton-Single-Instance-Modul, Auto-Updater, Toast-System - Auftrags-/Kunden-Übersicht nach Baustellen-App-Muster - CI: [apk]-Tag → Forgejo Runner → Package Registry netdiag-apk Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
17 lines
369 B
TypeScript
17 lines
369 B
TypeScript
import type { CapacitorConfig } from '@capacitor/cli';
|
|
|
|
const config: CapacitorConfig = {
|
|
appId: 'de.data_it_solution.netdiag',
|
|
appName: 'NetDiag',
|
|
webDir: 'build',
|
|
server: { androidScheme: 'https' },
|
|
plugins: {
|
|
SplashScreen: {
|
|
launchAutoHide: true,
|
|
backgroundColor: '#0d1117',
|
|
showSpinner: false,
|
|
},
|
|
},
|
|
};
|
|
|
|
export default config;
|