Describe the bug
If the app is removed from the background on iOS, sharing from any app (gallery/WhatsApp, etc.) doesn't trigger the plugin. It works fine if the app is in background.
I have the event-listener in my main.js
To Reproduce
Steps to reproduce the behavior:
- Kill the app and remove it from the background
- Try to share from gallery or anywhere else
- App will open but event won't be trigerred
Expected behavior
Event should trigger, just like it does when the app was in background
Screenshots

Desktop (please complete the following information):
- OS: [e.g. iOS]
- Browser [e.g. chrome, safari]
- Version [e.g. 22]
Smartphone (please complete the following information):
- Device: iPhone 16e
- OS: iOS
- Version 18.4.1
Additional context
Here's the event listener in my main.js:
window.addEventListener("sendIntentReceived", () => {
alert("sendIntentReceived");
SendIntent.checkSendIntentReceived().then((result) => {
alert("sendIntentReceived result: " + JSON.stringify(result));
});
});
Describe the bug
If the app is removed from the background on iOS, sharing from any app (gallery/WhatsApp, etc.) doesn't trigger the plugin. It works fine if the app is in background.
I have the event-listener in my main.js
To Reproduce
Steps to reproduce the behavior:
Expected behavior
Event should trigger, just like it does when the app was in background
Screenshots
Desktop (please complete the following information):
Smartphone (please complete the following information):
Additional context
Here's the event listener in my main.js: