How can I register my xamarin android app as an SMS Assistant handler?
Whats exactly the difference between assistant handler and default handler?
I found this code fragment to change the default SMS handler:
Intent setSmsAppIntent = new Intent(Telephony.Sms.Intents.ActionChangeDefault);
setSmsAppIntent.PutExtra(Telephony.Sms.Intents.ExtraPackageName, Android.App.Application.Context.PackageName);
Forms.Context.StartActivity(setSmsAppIntent);
But with the shown dialog I can only select the preinstalled Message-App of Android.
Shown below:

I red the Google policies for SMS handling and think that I have the to add my app as an assistant handler to fullfill the policy requirements. Because app should receive "commands" with SMS (in case no network connection is available) but not offers the user the possibility to manage the received messages. So the default SMS handler should be the default message app.
(The app itself is working fine. Just the requirements arn't fullfilled.)
I also found this link: How to make an application default phone or assistant handler on the device
There is mentioned to use RoleManager to requests. Is this comparable with Xamarin.Essentials or exists an other package for that?