Files
immich/mobile/ios/Runner/ViewIntent/ViewIntentApiImpl.swift
T
Peter Ombodi ef80a8e936 feat(mobile): handle Android ACTION_VIEW intent
- add ViewIntent Pigeon API and generated bindings
- implement Android ViewIntentPlugin + iOS no-op host
- route ExternalMediaViewer by ViewIntentAttachment
- buffer pending view intents and flush on user ready/resume
2026-02-05 18:54:59 +02:00

6 lines
179 B
Swift

class ViewIntentApiImpl: ViewIntentHostApi {
func consumeViewIntent(completion: @escaping (Result<ViewIntentPayload?, any Error>) -> Void) {
completion(.success(nil))
}
}