Skip to main content

Documentation Index

Fetch the complete documentation index at: https://jdev-e8db0569.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Prerequisites

Before you begin, ensure you have:
  • Flutter 3.x or higher
  • For iOS: iOS 13 or higher
  • For Android: Android SDK 26 (Android 8.0) or higher

Install the Package

Add the dependency to your pubspec.yaml:
dependencies:
  seon_orchestration_flutter:
    path: ../seon-orchestration-flutter  # or from pub.dev once published
Then run:
flutter pub get

Platform Setup

1. Install CocoaPods dependencies

cd ios && pod install && cd ..

2. Add required permissions to Info.plist

Add the following keys to ios/Runner/Info.plist:
<key>NSCameraUsageDescription</key>
<string>We need camera access for identity verification</string>
<key>NSMicrophoneUsageDescription</key>
<string>We need microphone access for identity verification</string>
<key>NSLocationWhenInUseUsageDescription</key>
<string>We need location access for identity verification</string>
<key>NSPhotoLibraryUsageDescription</key>
<string>We need photo library access for identity verification</string>
Missing any of these keys will cause the app to crash when the SDK requests that permission.
Customize the description strings to match your app’s use case.

Next Steps

Quick Start

Write your first verification flow

API Reference

Explore the full API documentation