grantModule

val grantModule: <Error class: unknown class>

Koin DI module for grant management.

Provides production-ready, platform-specific grant implementation.

Architecture:

  • GrantManager: Handles grant requests

  • ServiceManager: Checks system services (GPS, Bluetooth, etc.)

  • GrantAndServiceChecker: Convenience API combining both

Usage:

// In your Koin setup
startKoin {
modules(
grantModule,
grantPlatformModule // Platform-specific (Android/iOS)
)
}