From 50ff686a14ccd29fb31672cf78bfb9711fcac054 Mon Sep 17 00:00:00 2001 From: Ben Li Date: Mon, 8 Jul 2019 11:06:17 -0700 Subject: [PATCH 1/2] Added minimum sdk requirement on AndroidManifest --- android/src/main/AndroidManifest.xml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/android/src/main/AndroidManifest.xml b/android/src/main/AndroidManifest.xml index a9e05ce2..ec2c4b72 100644 --- a/android/src/main/AndroidManifest.xml +++ b/android/src/main/AndroidManifest.xml @@ -1,12 +1,13 @@ + Date: Mon, 8 Jul 2019 11:08:46 -0700 Subject: [PATCH 2/2] added descriptions for minimum sdk requirement for methods --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 6951c56f..3f6a5bd9 100644 --- a/README.md +++ b/README.md @@ -10,6 +10,9 @@ Plugin that allows Flutter to communicate with a native WebView. The webview is not integrated in the widget tree, it is a native view on top of the flutter view. You won't be able see snackbars, dialogs, or other flutter widgets that would overlap with the region of the screen taken up by the webview. +The getSafeAcceptedType() function is available only for minimum SDK of 21. +eval() function only supports SDK of 19 or greater for evaluating Javascript. + ## Getting Started For help getting started with Flutter, view our online [documentation](http://flutter.io/).