Note: we are using react-native-camera npm package powered by react-native-community.
Here is the one more step to link RNCamera libraries that contain native code:
Installing RNCamera Dependencies
for RNCamera’s setup you need Java Development Kit(JDK) newer than version 1.8.
This chapter does assume that you have already installed react native project, if not please go to this link.
if you are developing for android, you will need buildToolsVersion minimum version 25.0.3.
Now time to install RNCamera package (in your project) with running a simple command:
npm install react-native-camera --save
Here is the one more step to link RNCamera libraries that contain native code:
react-native link react-native-camera
Thank you