-
Notifications
You must be signed in to change notification settings - Fork 243
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
continueInApp() only works every other time #230
Comments
@vonstring I've noticed the same thing from my end. I'm seeing the following behavior on iOS (haven't tested Android yet)... For images, the ShareMenuModuleComponent always loads properly the first time upon clicking my app's icon in the share sheet. However, if I keep my phone's Photos app open and try again, the first time trying to share a second image always fails to bring up the ShareMenuModuleComponent. If I click my app's icon in the share sheet a second time after this first failure, it seems to always work as expected. The below screenshot is the output from my Metro terminal. The first call to the Note that if I close the Photos app and start fresh for a second image, it always seems to work. So the issue is when trying a second time without closing the native Photos app. The above behavior is the exact same for files in the native iOS Files app. However I've noticed that I can't get audio files from Voicemail to ever succeed the second time. I need to navigate out of Voicemail and then come back in for a second audio file upload to work. Again, first time always works, successive tries (without closing the app) always fail. @caiosba @Gustash please let us know if there's a better way to utilize your APIs (like I appreciate the support! Dan |
@DanC5 were you able to solve it? |
I was not able to solve this, outside of the work around referenced in the original post. A useEffect in my code making the calls looks like this...
|
I see the same issue :| |
This is the fix for iOS |
I'm having issues with
continueInApp
only working every other time. First time it will open the main app as expected. The next time I share something, the share extension just closes as soon ascontinueInApp
is called, and the main app never opens.I've worked around it by dismissing the extension a while after calling
continueInApp
:which makes the main app open every time. Am I missing something? (very possible)
The text was updated successfully, but these errors were encountered: