I am building the app for android which uses single sign on in it. So for single sign on cookie is getting set to web-view. But, on single logout (SLO) SAML request and response are not getting sent. So SLO is not working.
I can see this behavior working as expected in iOS WKWebView and on the desktop browsers. But in android web view does not clear the web-view cookie which leads to failure in logout. I don't want to clear the cookie programmatically in shouldOverrideUrlLoading()
as that is not a proper approach.
Is there any issue in Web-View related to SAML in android? Do I have to take care from my side? Any changes required in the server side configuration?