Reputation: 51
I’m using the following code to launch a login page in my Flutter app via native Android code using CustomTabsIntent:
val customTabsIntent = CustomTabsIntent.Builder().build()
customTabsIntent.launchUrl(this, Uri.parse(loginUrl))
I want to manage cookies for the browser session opened using CustomTabsIntent. Specifically:
I came across CookieManager in Android’s WebKit, but I’m unsure how to integrate it with CustomTabsIntent. Could someone guide me on how to:
Upvotes: 0
Views: 19