美文网首页
react native camera 使用

react native camera 使用

作者: marlti7 | 来源:发表于2019-04-08 15:04 被阅读0次
  1. 安装
    npm install --save react-native-camera@git+https://git@github.com/react-native-community/react-native-camera.git
    2.自动link
    react-native link react-native-camera
    3.ios配置权限
    info.plist里配置camera访问权限及提示信息
    4.安卓自动配置后有问题
    检查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)

相关文章

网友评论

      本文标题:react native camera 使用

      本文链接:https://www.haomeiwen.com/subject/ecauiqtx.html