In this guide, you will learn how to get started with the Genius Scan SDK for .NET MAUI.
The Genius Scan SDK provides a .NET MAUI plugin to perform a simple integration with the document scan flow or the barcode scan flow.
Install the NuGet package to your project:
dotnet add package GeniusScanSDK.ScanFlow
Forward OnActivityResult to the service so promises complete correctly:
protected override void OnActivityResult(int requestCode, Result resultCode, Intent? data)
{
if (!ScanFlowService.OnActivityResult(requestCode, resultCode, data))
{
base.OnActivityResult(requestCode, resultCode, data);
}
}
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.