In Xamarin.Forms application, I am doing login through OidcClient, I am facing one issue with Android. After the first successful login, the user does not go through the login again. When oidcClient LoginAsync gets called it automatically approves the user. Probably it is caching the login information in the browser. I don't want that, User should always go through the whole login process again. It is behaving perfectly in iOS.
LoginRequest request = new LoginRequest();
var cancellationToken = new CancellationTokenSource();
request.FrontChannelExtraParameters.Add("prompt", "login");
var result = await oidcClient.LoginAsync(request, cancellationToken.Token);