AiutaPlatformContext

actual typealias AiutaPlatformContext = Context

Android implementation of AiutaPlatformContext.

On Android, this is implemented as a typealias to android.content.Context, allowing the SDK to access Android-specific functionality such as:

  • Application resources

  • File system access

  • Network configuration

  • System services

expect abstract class AiutaPlatformContext

Platform-specific context abstraction for the Aiuta SDK.

This abstract class provides a platform-agnostic way to handle platform-specific context requirements across different platforms:

  • Android: Implemented as a typealias to android.content.Context

  • Other platforms: Provides a singleton instance for platforms that don't require context

The context is used internally by the SDK for platform-specific operations such as file access, network configuration, and resource management.

actual abstract class AiutaPlatformContext

Non-Android implementation of AiutaPlatformContext.

For platforms other than Android (such as iOS, Desktop, etc.), this provides a minimal implementation that doesn't require platform-specific context.

Types

Link copied to clipboard
object Companion