An interface for expo-barcode-scanner.
npm install expo-barcode-scanner-interfaceAn interface for expo-barcode-scanner.
This package is pre-installed in managed Expo projects. You may skip the rest of the installation guide if this applies to you.
For bare React Native projects, you must ensure that you have installed and configured the @unimodules/core package before continuing.
```
npm install expo-barcode-scanner-interface
Add the dependency to your Podfile and then run pod install.
`ruby`
pod 'EXBarCodeScannerInterface', path: '../node_modules/expo-barcode-scanner-interface/ios'
1. Append the following lines to android/settings.gradle:
`gradle`
include ':expo-barcode-scanner-interface'
project(':expo-barcode-scanner-interface').projectDir = new File(rootProject.projectDir, '../node_modules/expo-barcode-scanner-interface/android')
2. Insert the following lines inside the dependencies block in android/app/build.gradle:`gradle``
api project(':expo-barcode-scanner-interface')
Contributions are very welcome! Please refer to guidelines described in the contributing guide.