I am using Xamarin Essentials share service to show the share UI view in iOS in Xamarin forms app. However in iOS, the same app from which I am calling the share is also getting displayed as the suggested app. Is there any way to remove it? Below is part of the code which calls the essentials API for showing the share sheet view.
Xamarin.Essentials.Interfaces.IShare _shareService;
await _shareService.RequestAsync(new ShareTextRequest
{
Uri = invitationUrl,
});
Both will display the sheet,, but only iOS having issue with showing my main app also as suggested app