Package-level declarations

Types

Link copied to clipboard

A lightweight logging utility for the Grant library's internal diagnostics — missing Info.plist keys, unregistered opt-in modules, Settings-navigation failures, and similar edge cases the library itself detects.

Link copied to clipboard

Utility to detect if app is running on iOS Simulator.

Functions

Link copied to clipboard

Shared iOS utility: validates that a required Info.plist key is present.

Link copied to clipboard
inline fun <T> mainContinuation(noinline block: (T) -> Unit): (T) -> Unit

Wraps a callback to ensure it runs on the main thread.

Link copied to clipboard
inline fun <T1, T2> mainContinuation2(noinline block: (T1, T2) -> Unit): (T1, T2) -> Unit

Wraps a callback with two parameters to ensure it runs on the main thread.