Android only
$ npm install react-native-doc-scanner --save
$ react-native link react-native-doc-scanner
- Open up
android/app/src/main/java/[...]/MainActivity.java
- Add
import ru.badver.docscanner.RNDocScannerPackage;
to the imports at the top of the file - Add
new RNDocScannerPackage()
to the list returned by thegetPackages()
method
- Append the following lines to
android/settings.gradle
:include ':react-native-doc-scanner' project(':react-native-doc-scanner').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-doc-scanner/android') include ':scanlibrary' project(':scanlibrary').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-doc-scanner/android/scanlibrary')
- Insert the following lines inside the dependencies block in
android/app/build.gradle
:compile project(':react-native-doc-scanner')
import RNDocScanner from 'react-native-doc-scanner';
RNDocScanner.scan().then(uri => ...);