AiutaPlatformContext
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
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.
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.