KasemJaffer / receive_sharing_intent

A Flutter plugin that enables flutter apps to receive sharing photos, text and url from other apps.
Apache License 2.0
325 stars 375 forks source link

iOS doesn't handle links but Android does #186

Open MagTuxGit opened 2 years ago

MagTuxGit commented 2 years ago

I'm an iOS dev so I'm not really confident in Android stuff...

This PR https://github.com/KasemJaffer/receive_sharing_intent/pull/117 removed links handling in iOS.

In Android part we have this https://github.com/KasemJaffer/receive_sharing_intent/blob/e1a945c3da610cdb0ec2788f1b89a96e3f0c6f32/android/src/main/kotlin/com/kasem/receive_sharing_intent/ReceiveSharingIntentPlugin.kt#L131-L136 So Android still handles links and treats them like a shared text. Am I right?

MagTuxGit commented 2 years ago

I'm using receive_sharing_intent for sharing and uni_links for deeplinking. When I open link in my app the both are handling the link. I need to make additional checks to not to share links I've just handled.