unimodules-barcode-scanner-interface
Version:
An interface for bar code scanners
42 lines (26 loc) • 1.4 kB
Markdown
# unimodules-barcode-scanner-interface
An interface for bar code scanners.
# Installation
This package is pre-installed in [managed](https://docs.expo.io/versions/latest/introduction/managed-vs-bare/) 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](https://github.com/unimodules/core) before continuing.
### Add the package to your npm dependencies
```
npm install unimodules-barcode-scanner-interface
```
### Configure for iOS
Add the dependency to your `Podfile` and then run `pod install`.
```ruby
pod 'UMBarCodeScannerInterface', path: '../node_modules/unimodules-barcode-scanner-interface/ios'
```
### Configure for Android
1. Append the following lines to `android/settings.gradle`:
```gradle
include ':unimodules-barcode-scanner-interface'
project(':unimodules-barcode-scanner-interface').projectDir = new File(rootProject.projectDir, '../node_modules/unimodules-barcode-scanner-interface/android')
```
2. Insert the following lines inside the dependencies block in `android/app/build.gradle`:
```gradle
api project(':unimodules-barcode-scanner-interface')
```
# Contributing
Contributions are very welcome! Please refer to guidelines described in the [contributing guide](https://github.com/expo/expo#contributing).