You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am encountering a critical issue with the send intent functionality in my Ionic project. The problem is specific to Android devices. Although the functionality operates seamlessly on iOS, on Android, after sharing data and swiping up to access files or images, the app redirects to the previous URL or reloads the current page
Here is my AndroidManifest.xml activity code for intent
If i understand you correctly, you are talking about open about the app selection menu by swiping up. The SendIntentActivity is a separate activity, so it opens as an extra app instance. If you open the app selection menu, you leave the context of this instance and therefore it closes. This is configured in SendIntentActivity::onStop. If you want to access files or images, you should do that within the instance and not leave the context.
I am encountering a critical issue with the send intent functionality in my Ionic project. The problem is specific to Android devices. Although the functionality operates seamlessly on iOS, on Android, after sharing data and swiping up to access files or images, the app redirects to the previous URL or reloads the current page
Here is my AndroidManifest.xml activity code for intent
The text was updated successfully, but these errors were encountered: