Skip to content

Commit 50ff686

Browse files
committed
Added minimum sdk requirement on AndroidManifest
1 parent 6aca2b2 commit 50ff686

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

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)