Skip to content

Commit 4d15be8

Browse files
authored
Merge pull request #471 from lidongze91/addMinSdk
Add min sdk requirement and descriptions
2 parents 760d6bd + c487c7f commit 4d15be8

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@ Plugin that allows Flutter to communicate with a native WebView.
1010
The webview is not integrated in the widget tree, it is a native view on top of the flutter view.
1111
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.
1212

13+
The getSafeAcceptedType() function is available only for minimum SDK of 21.
14+
eval() function only supports SDK of 19 or greater for evaluating Javascript.
15+
1316
## Getting Started
1417

1518
For help getting started with Flutter, view our online [documentation](http://flutter.io/).

android/src/main/AndroidManifest.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
22
xmlns:tools="http://schemas.android.com/tools"
33
package="com.flutter_webview_plugin">
4+
<uses-sdk android:minSdkVersion="16" />
45
<application>
56
<provider
67
android:name="androidx.core.content.FileProvider"
78
android:authorities="${applicationId}.fileprovider"
89
android:exported="false"
9-
android:grantUriPermissions="true"
10+
android:grantUriPermissions="true"
1011
tools:replace="android:authorities">
1112
<meta-data
1213
android:name="android.support.FILE_PROVIDER_PATHS"

0 commit comments

Comments
 (0)