> ## Documentation Index
> Fetch the complete documentation index at: https://docs.crossmint.com/llms.txt
> Use this file to discover all available pages before exploring further.

# PlatformSpecificProvider

> Composable Function

**Composable**

```kotlin theme={null}
@Composable
fun PlatformSpecificProvider(apiKey: Result, authManager: Result, content: @Composable() -> Unit)
```

Platform-specific provider that can add additional capabilities like TEE on supported platforms

## Parameters

| Name         | Description                                                                                                                              |
| ------------ | ---------------------------------------------------------------------------------------------------------------------------------------- |
| sdk          | The CrossmintSDK instance                                                                                                                |
| apiKey       | The API key for the SDK                                                                                                                  |
| teeOTPDialog | Optional composable invoked when TEE requires user interaction (e.g., OTP). Receives submit/dismiss callbacks. If null, TEE is disabled. |
| content      | The main content to be rendered                                                                                                          |
