/// Zentrale App-Konfiguration – alle URLs, Keys, Feature-Toggles class AppConfig { // Server-Adressen static const navidromeUrl = 'https://musik.baka-net.de'; static const cloudUrl = 'https://cloud.baka-net.de'; static const logUrl = 'https://baka-net.de'; static const authUrl = 'https://baka-net.de/auth'; // Auth läuft über Bearer-Token aus dem Cloud-Login — KEIN hartcodierter Key mehr. // (Alter Key melo-cloud-2026-secret-key wurde entfernt: steckte in jeder APK.) static const ytProxyApiKey = String.fromEnvironment('MELO_API_KEY', defaultValue: ''); // Feature-Toggles static bool sendeDiagnosedaten = true; }