Commit baafa5e0919bbb53adad35b8d925138c2e6255ee
Committed by
GitHub
1 parent
d305ca43
Exists in
master
Update README.md
Showing
1 changed file
with
3 additions
and
0 deletions
Show diff stats
README.md
... | ... | @@ -13,6 +13,7 @@ What this module does: |
13 | 13 | * extracts it into a separate module like [lucasferreira's react-native-webview-android][lucasferreira] for easier setup; |
14 | 14 | * adds the video recording functionality; |
15 | 15 | * adds support for the `accept` attribute; |
16 | +* adds support for sdk 26, using `FileProvider` | |
16 | 17 | |
17 | 18 | It should work with React Native 0.50+, and reverts to the built-in WebView on iOS. |
18 | 19 | |
... | ... | @@ -80,6 +81,8 @@ public class MainApplication extends Application implements ReactApplication { |
80 | 81 | |
81 | 82 | * Add file provider path resource `file_provider_paths.xml` in `[your project]/android/app/src/main/res/xml/` folder. If the folder does not exist, create a new one. |
82 | 83 | |
84 | +NOTE: this is a requirement for `sdk 26`. This approach should NOT require you to ask/handle any dangerous permissions. | |
85 | + | |
83 | 86 | ```xml |
84 | 87 | <?xml version="1.0" encoding="utf-8"?> |
85 | 88 | <paths xmlns:android="http://schemas.android.com/apk/res/android"> | ... | ... |