Install the SDK on .NET MAUI

Available on: .NET MAUI

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.

Package information

Setup

Installation

Install the NuGet package to your project:

dotnet add package GeniusScanSDK.ScanFlow

Platform-specific configuration

Android configuration

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);
    }
}

iOS configuration

In your Platforms/iOS/Info.plist, add the camera usage description:

<key>NSCameraUsageDescription</key>
<string>We use the camera to scan documents</string>

What’s Next?

Next, configure a license key.

Products

Industries

Case Studies

Integration

Company

© 2025 The Grizzly Labs. All rights reserved.