Commit de8dec64806733e5ec789c89407597abc9463ef1
Committed by
GitHub
1 parent
6d999623
Exists in
master
Update README.md
Showing
1 changed file
with
12 additions
and
0 deletions
Show diff stats
README.md
... | ... | @@ -119,6 +119,18 @@ NOTE: this is a requirement for `sdk 26`. This approach should NOT require you t |
119 | 119 | </manifest> |
120 | 120 | ``` |
121 | 121 | |
122 | +* !!! IMPORTANT !!! | |
123 | + | |
124 | +Remove the explicit Camera permission from your `AndroidManifest.xml`, in case you have it: | |
125 | + | |
126 | +```diff | |
127 | +<manifest ...> | |
128 | + | |
129 | +- <uses-permission android:name="android.permission.CAMERA" /> | |
130 | + | |
131 | +</manifest> | |
132 | +``` | |
133 | + | |
122 | 134 | ### Re-build your application |
123 | 135 | |
124 | 136 | Since you have changed native code, reloading the JS code alone won't work: | ... | ... |