This is test module. Please leave request on [email protected] with subject 'improve react-native-mrz-scanner' and I'll modify library if many people need it.
$ npm install react-native-mrz-scanner --save
$ react-native link react-native-mrz-scanner
- In XCode, in the project navigator, right click
Libraries
➜Add Files to [your project's name]
- Go to
node_modules
➜react-native-mrz-scanner
and addMrzScanner.xcodeproj
- In XCode, in the project navigator, select your project. Add
libMrzScanner.a
to your project'sBuild Phases
➜Link Binary With Libraries
- Run your project (
Cmd+R
)<
- Open up
android/app/src/main/java/[...]/MainApplication.java
- Add
import com.reactlibrary.MrzScannerPackage;
to the imports at the top of the file - Add
new MrzScannerPackage()
to the list returned by thegetPackages()
method
- Append the following lines to
android/settings.gradle
:include ':react-native-mrz-scanner' project(':react-native-mrz-scanner').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-mrz-scanner/android')
- Insert the following lines inside the dependencies block in
android/app/build.gradle
:compile project(':react-native-mrz-scanner')
import MrzScanner from 'react-native-mrz-scanner';
// TODO: What to do with the module?
MrzScanner;