We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a68466c commit 3bc8794Copy full SHA for 3bc8794
android/src/main/kotlin/com/linusu/flutter_web_auth/FlutterWebAuthPlugin.kt
@@ -34,7 +34,7 @@ class FlutterWebAuthPlugin(private val context: Context): MethodCallHandler {
34
val intent = CustomTabsIntent.Builder().build()
35
val keepAliveIntent = Intent(context, KeepAliveService::class.java)
36
37
- intent.intent.addFlags(Intent.FLAG_ACTIVITY_SINGLE_TOP or Intent.FLAG_ACTIVITY_NO_HISTORY or Intent.FLAG_ACTIVITY_NEW_TASK)
+ intent.intent.addFlags(Intent.FLAG_ACTIVITY_SINGLE_TOP or Intent.FLAG_ACTIVITY_NEW_TASK)
38
intent.intent.putExtra("android.support.customtabs.extra.KEEP_ALIVE", keepAliveIntent)
39
40
intent.launchUrl(context, url)
0 commit comments