In this guide, you will learn how to get started with the Genius Scan SDK for .NET MAUI.
The Genius Scan SDK provides .NET wrappers on iOS and Android to perform a simple integration with the document scan flow or the barcode scan flow.
Install the platform-specific NuGet packages for your project:
dotnet add package GeniusScanSDK.ScanFlow.iOS
dotnet add package GeniusScanSDK.ScanFlow.Android
In your Platforms/Android/AndroidManifest.xml
, ensure the minimum SDK version is set:
<uses-sdk android:minSdkVersion="21" />
Add camera permission:
<uses-permission android:name="android.permission.CAMERA" />
In your Platforms/iOS/Info.plist
, add the camera usage description:
<key>NSCameraUsageDescription</key>
<string>We use the camera to scan documents</string>
Next, configure a license key.
© 2025 The Grizzly Labs. All rights reserved.