GrantFactory

A static factory for creating GrantManager instances without a Dependency Injection framework.

Use this for "Manual Injection" if your project does not use Koin or other DI tools.

Usage Example (Android)

val grantManager = GrantFactory.create(applicationContext)

Usage Example (iOS)

val grantManager = GrantFactory.create()

Functions

Link copied to clipboard
fun create(context: Any? = null, store: GrantStore? = null): GrantManager

Creates and returns a production-ready GrantManager instance.