Skip to content

Commit

Permalink
Merge pull request #471 from lidongze91/addMinSdk
Browse files Browse the repository at this point in the history
Add min sdk requirement and descriptions
  • Loading branch information
charafau authored Aug 15, 2019
2 parents cc35a6e + 89aff25 commit bc2f8cd
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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/).
Expand Down
3 changes: 2 additions & 1 deletion android/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="com.flutter_webview_plugin">
<uses-sdk android:minSdkVersion="16" />
<application>
<provider
android:name="androidx.core.content.FileProvider"
android:authorities="${applicationId}.fileprovider"
android:exported="false"
android:grantUriPermissions="true"
android:grantUriPermissions="true"
tools:replace="android:authorities">
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
Expand Down

0 comments on commit bc2f8cd

Please sign in to comment.