mirror of
https://github.com/immich-app/immich.git
synced 2026-05-24 08:32:28 -04:00
ef80a8e936
- 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
6 lines
179 B
Swift
6 lines
179 B
Swift
class ViewIntentApiImpl: ViewIntentHostApi {
|
|
func consumeViewIntent(completion: @escaping (Result<ViewIntentPayload?, any Error>) -> Void) {
|
|
completion(.success(nil))
|
|
}
|
|
}
|