集成react-native-camera组件,android下报错
Cannot choose between the following variants of project :react-native-camera:
解决方法
https://github.com/react-native-camera/react-native-camera/blob/master/docs/installation.md#android---other-required-steps
android {
...
defaultConfig {
...
missingDimensionStrategy 'react-native-camera', 'general' // <--- insert this line
}
}