瀏覽代碼

Merge branch 'master' into master

Jason Foo 4 年之前
父節點
當前提交
96f72953ed
No account linked to committer's email address
共有 2 個檔案被更改,包括 2 行新增2 行删除
  1. 1
    1
      android/src/main/java/com/reactnativecommunity/webview/RNCWebViewModule.java
  2. 1
    1
      package.json

+ 1
- 1
android/src/main/java/com/reactnativecommunity/webview/RNCWebViewModule.java 查看文件

@@ -273,7 +273,7 @@ public class RNCWebViewModule extends ReactContextBaseJavaModule implements Acti
273 273
 
274 274
   public boolean grantFileDownloaderPermissions() {
275 275
     // Permission not required for Android Q and above
276
-    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.Q) {
276
+    if (Build.VERSION.SDK_INT > Build.VERSION_CODES.P) {
277 277
       return true;
278 278
     }
279 279
 

+ 1
- 1
package.json 查看文件

@@ -8,7 +8,7 @@
8 8
     "Thibault Malbranche <malbranche.thibault@gmail.com>"
9 9
   ],
10 10
   "license": "MIT",
11
-  "version": "10.3.1",
11
+  "version": "10.3.2",
12 12
   "homepage": "https://github.com/react-native-community/react-native-webview#readme",
13 13
   "scripts": {
14 14
     "start": "node node_modules/react-native/local-cli/cli.js start",