In this guide, you will learn how to get started with the Genius Scan SDK for React Native.
From your React Native root folder:
npm install @thegrizzlylabs/react-native-genius-scan --save
For React Native versions below 0.60, you will also need to link the plugin:
react-native link @thegrizzlylabs/react-native-genius-scan
Open the android/build.gradle
file and make the following changes:
minSdkVersion
to 21
allprojects {
repositories {
// ... existing repositories
maven { url 'https://s3.amazonaws.com/tgl.maven' }
}
}
Info.plist
:<key>NSCameraUsageDescription</key>
<string>We use the camera to scan documents</string>
Podfile
, add the following line:platform :ios, '13.0'
pod install
from the ios folder:cd ios && pod install
Next, configure a license key.
© 2025 The Grizzly Labs. All rights reserved.