- Module structure mirrors location pattern (core/data, core/domain, core/providers, features) - Supports text, emoji, image and audio messages over POST /chat-messages multipart - Optimistic UI with status reconciliation via 4s polling and circuit breaker after 3 errors - Offline queue persisted in SharedPreferences, drained on conversation re-open - WhatsApp-style audio recorder with long-press, slide-to-cancel, haptics and animated overlay - Image picker (camera/gallery) with on-device 1024px JPEG compression - Single-audio playback coordinator across bubbles - Family group fan-out: N parallel POSTs sharing chatId, members derived from delegationId - Reuses LegacyOptionCard extracted from videocall idle screen - Tracking events legacy_chat_opened, message_sent, image_sent, audio_sent, permission_denied (no PII) - WebSocket ChatMessageEvent parser added for future backend support - Push command CHAT_MESSAGE handled in notifications_init for deep-linking - 15 unit tests covering id resolver, file url builder and repository Pending backend coordination: GET /chat-messages 500 (parseQueryParams), push routing heuristic, file size/mime limits.
28 lines
818 B
CMake
28 lines
818 B
CMake
#
|
|
# Generated file, do not edit.
|
|
#
|
|
|
|
list(APPEND FLUTTER_PLUGIN_LIST
|
|
audioplayers_linux
|
|
file_selector_linux
|
|
record_linux
|
|
url_launcher_linux
|
|
)
|
|
|
|
list(APPEND FLUTTER_FFI_PLUGIN_LIST
|
|
)
|
|
|
|
set(PLUGIN_BUNDLED_LIBRARIES)
|
|
|
|
foreach(plugin ${FLUTTER_PLUGIN_LIST})
|
|
add_subdirectory(flutter/ephemeral/.plugin_symlinks/${plugin}/linux plugins/${plugin})
|
|
target_link_libraries(${BINARY_NAME} PRIVATE ${plugin}_plugin)
|
|
list(APPEND PLUGIN_BUNDLED_LIBRARIES $<TARGET_FILE:${plugin}_plugin>)
|
|
list(APPEND PLUGIN_BUNDLED_LIBRARIES ${${plugin}_bundled_libraries})
|
|
endforeach(plugin)
|
|
|
|
foreach(ffi_plugin ${FLUTTER_FFI_PLUGIN_LIST})
|
|
add_subdirectory(flutter/ephemeral/.plugin_symlinks/${ffi_plugin}/linux plugins/${ffi_plugin})
|
|
list(APPEND PLUGIN_BUNDLED_LIBRARIES ${${ffi_plugin}_bundled_libraries})
|
|
endforeach(ffi_plugin)
|