- 安裝
npm install --save react-native-camera@git+https://git@github.com/react-native-community/react-native-camera.git
2.自動(dòng)link
react-native link react-native-camera
3.ios配置權(quán)限
info.plist里配置camera訪問(wèn)權(quán)限及提示信息
4.安卓自動(dòng)配置后有問(wèn)題
檢查android/app/build.gradle:
android {
...
defaultConfig {
...
missingDimensionStrategy 'react-native-camera', 'general' <-- insert this line
}
}
5.參考文章
(https://segmentfault.com/a/1190000014955481)
(https://github.com/react-native-community/react-native-camera)