diff --git a/android/src/main/AndroidManifest.xml b/android/src/main/AndroidManifest.xml
index 40dc1267..daff949a 100755
--- a/android/src/main/AndroidManifest.xml
+++ b/android/src/main/AndroidManifest.xml
@@ -8,7 +8,9 @@
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale|layoutDirection|fontScale|screenLayout|density" />
+ android:name="com.pichillilorenzo.flutter_inappwebview.chrome_custom_tabs.ChromeCustomTabsActivity"
+ android:launchMode="singleInstance"
+ />
toMap() {
@@ -53,7 +58,8 @@ class AndroidChromeCustomTabsOptions
"enableUrlBarHiding": enableUrlBarHiding,
"instantAppsEnabled": instantAppsEnabled,
"packageName": packageName,
- "keepAliveEnabled": keepAliveEnabled
+ "keepAliveEnabled": keepAliveEnabled,
+ "noHistory": noHistory
};
}
@@ -68,6 +74,7 @@ class AndroidChromeCustomTabsOptions
options.instantAppsEnabled = map["instantAppsEnabled"];
options.packageName = map["packageName"];
options.keepAliveEnabled = map["keepAliveEnabled"];
+ options.noHistory = map["noHistory"];
return options;
}