Hello,
Welcome to our Microsoft Q&A platform!
We cannot set with in-app browser as the default app for link. Because in App-Linking, Android will delegate to a registered application. The in-app browser cannot work as an independent application. You could check the source code of the Xamarin.Essentials.Browser, the SystemPreferred mode just starts an intent to load the url instead of starting an Activity.
To load the url in in-app browser, try using Browser.OpenAsync
method with BrowserLaunchMode.SystemPreferred mode like below.
Browser.OpenAsync(uri, BrowserLaunchMode.SystemPreferred);
Related doc: https://learn.microsoft.com/en-us/xamarin/essentials/open-browser?tabs=android
Best Regards,
Jarvan Zhang
If the response is helpful, please click "Accept Answer" and upvote it.
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.