receive_sharing_intent
receive_sharing_intent copied to clipboard
Can't get past share dialog on iOS
Things work fine on Android but on iOS I get the share dialog and then it does nothing.
Any ideas?
Same here, I can't figure out why I can't pass the dialog in iOS. Check all the xcode configuration multiple times and getting always the same results.
Is there anybody who managed to have it working in iOS?
Same here, does not go past the share screen on iOS.
It happens the same to me.
Try the solution from https://github.com/KasemJaffer/receive_sharing_intent/issues/36#issuecomment-595130324 and tell if it helped.
@schoudha @VictorGa @PabloCrucitta @nfodor is this still an open issue?
Yeah so on android no problem but ios i would like to avoid the dialog to write comment before sending, because after i tap send it works but the app i send it from freezes.
On Apr 21, 2020, at 3:24 AM, GRBurst [email protected] wrote:
@schoudha @VictorGa @PabloCrucitta @nfodor is this still an open issue?
— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub, or unsubscribe.
@schoudha @VictorGa @PabloCrucitta @nfodor is this still an open issue?
Fixed, thank you very much!
Yeah so on android no problem but ios i would like to avoid the dialog to write comment before sending, because after i tap send it works but the app i send it from freezes. On Apr 21, 2020, at 3:24 AM, GRBurst [email protected] wrote: @schoudha @VictorGa @PabloCrucitta @nfodor is this still an open issue? — You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub, or unsubscribe.
I get this dialog also. But only on the first share action. The app btw is not really frozen, there seems to be a semi-transparent window which you can slide down
I got rid of the dialog by adding these two lines to the end of the redirectToHostApp function in ShareViewController.swift:
...
extensionContext!.completeRequest(returningItems: [], completionHandler: nil)
// these two:
extensionContext!.completeRequest(returningItems: nil, completionHandler: nil)
extensionContext!.cancelRequest(withError:NSError())
}
...
I got rid of the dialog by adding these two lines to the end of the redirectToHostApp function in ShareViewController.swift:
... extensionContext!.completeRequest(returningItems: [], completionHandler: nil) // these two: extensionContext!.completeRequest(returningItems: nil, completionHandler: nil) extensionContext!.cancelRequest(withError:NSError()) } ...
Thanks it's working
I got rid of the dialog by adding these two lines to the end of the redirectToHostApp function in ShareViewController.swift:
... extensionContext!.completeRequest(returningItems: [], completionHandler: nil) // these two: extensionContext!.completeRequest(returningItems: nil, completionHandler: nil) extensionContext!.cancelRequest(withError:NSError()) } ...
thank you so much ! it's working, but i cannot receive media file, text on ios device