- Flutter-App (app/) für iOS, Android, macOS, Windows und Linux erstellt - WebView-Startseite mit flutter_inappwebview (iOS/Android/macOS/Windows), Linux-Fallback mit url_launcher - STOMP-over-WebSocket: Topic-basierte Echtzeit-Kommunikation zwischen Flutter-App und Spring Boot Core - Core: STOMP-Broker (/ws/stomp), CallEventBroadcaster auf /topic/calls, StompMessageController für /app/ping und /app/broadcast - SecurityConfig: /ws/** permitAll + CSRF-Ausnahme - Asset-basierte Konfigurationsdatei (app_config.json) für Server-URL, STOMP-Reconnect, Topics und WebView-URL - launch.json um Flutter-Debug/Profile/Release-Konfigurationen erweitert - macOS: FLTEnableMergedPlatformUIThread deaktiviert (WKWebView-Kompatibilität), network.client Entitlement gesetzt - iOS: NSAllowsLocalNetworking für lokale Entwicklung - Android: INTERNET-Permission und usesCleartextTraffic Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
22 lines
451 B
C
22 lines
451 B
C
#ifndef FLUTTER_MY_APPLICATION_H_
|
|
#define FLUTTER_MY_APPLICATION_H_
|
|
|
|
#include <gtk/gtk.h>
|
|
|
|
G_DECLARE_FINAL_TYPE(MyApplication,
|
|
my_application,
|
|
MY,
|
|
APPLICATION,
|
|
GtkApplication)
|
|
|
|
/**
|
|
* my_application_new:
|
|
*
|
|
* Creates a new Flutter-based application.
|
|
*
|
|
* Returns: a new #MyApplication.
|
|
*/
|
|
MyApplication* my_application_new();
|
|
|
|
#endif // FLUTTER_MY_APPLICATION_H_
|