Skip to main content

Installation

Use the latest standard release from Maven Central. Compatibility-suffixed artifacts expose a reduced API and are not a drop-in replacement.
build.gradle.kts

AvatarSDK

The core management class of the SDK, responsible for initialization and global configuration.
Properties
The session token used to authenticate avatars with Motion Server.
The user identifier.
Returns the version of AvatarKit.
Methods
Initialize AvatarKit.
Parameters:
  • context: Application context
  • appId: Your application identifier
  • configuration: The configuration for AvatarKit
Returns a Boolean value that indicates whether AvatarKit supports the current device.
Update the global rendering quality tier.
Cap render backing-buffer height while preserving view layout size.
Measures the device’s computational performance for avatar rendering.
The result contains separate cpuScore and gpuScore values.

AvatarManager

Avatar resource manager, responsible for downloading, caching, and loading avatar data.
Methods
Initialize AvatarManager. Must be called before use.
Parameters:
  • context: Application context
Loads an avatar by ID.
Parameters:
  • id: The avatar identifier
  • useCompressedModel: Load the smaller compressed model variant
  • onProgress: Optional progress callback
Returns: The loaded Avatar instance.
Clears cached data for a specific avatar.
Parameters:
  • id: The avatar identifier to clear
Clears all cached avatar data.
Gets the cache size for a specific avatar.
Parameters:
  • id: The avatar identifier
Returns: The cache size in bytes.
Gets the total cache size for all avatars.
Returns: The total cache size in bytes.

AvatarController

Real-time communication controller that handles connections, audio, and motion data.
Properties
Callback for connection state changes.
Callback for conversation state changes.
Callback for error events.
Sets or gets the playback volume (0.0 to 1.0).
Methods
Starts the avatar driving service connection.
Close connection.
Pause Avatar playback.
Resume Avatar playback.
Stops playback and terminates the current conversation.
Sends audio to the avatar driving service.For audio source and timing guidance, see Audio.
Parameters:
  • audioData: The audio data to send
  • end: Whether this is the end of the audio stream
Returns: A conversation ID string.
Provides response audio received from your backend in Backend Mode.
Parameters:
  • audioData: The audio data
  • end: Whether this is the end of the audio stream
Returns: A conversation ID string.
Provides motion data payloads received from your backend in Backend Mode.
Parameters:
  • animations: List of encoded motion data payloads
  • conversationId: The identifier returned by the matching yieldAudioData() call
Returns: Whether the payload completed the current conversation.

AvatarView

3D rendering view that automatically creates and manages AvatarController.
Initializers
Creates a new avatar view.
Properties
The controller for the avatar.
Transform for Avatar position and scale within the view.
Methods
Initialize view with avatar.
Parameters:
  • avatar: The avatar to display
  • scope: Coroutine scope, usually obtained via activity.lifecycleScope
Pause rendering for this view.
Resume rendering for this view.
Returns the rendered Avatar bounds when available.
Clean up all resources. Should be called when no longer in use.

Render over an Avatar Background

Download the optional 16:9 background from Spatius Studio and add it as a drawable resource. In Compose, place the background Image and AvatarView in the same Box. AvatarView renders on a transparent surface by default, so the background shows through.
For square or portrait display windows, center this 16:9 stage inside a clipped outer container. See Avatar Background for the shared cropping rules.

Avatar

Avatar data class containing core avatar information.

Configuration

SDK configuration class.
Initializers
Creates a new configuration with the specified parameters.
Parameters:
  • region: The region to connect to. Defaults to "auto": the SDK selects the closest serving region at initialization and reuses the cached choice on later launches. Pass "us-west", "ap-northeast", or "cn-beijing" to force that region. If automatic selection cannot be reached, the SDK falls back to a default region and continues initializing.
  • audioFormat: The audio format configuration
  • drivingServiceMode: The driving service mode
  • logLevel: The log level
  • renderQuality: Render quality tier

AudioFormat

Audio format configuration for AvatarKit.
Initializers
Creates a new audio format.
Parameters:
  • sampleRate: The audio sample rate in Hz. Supported sample rates are: 8000, 16000, 22050, 24000, 32000, 44100, 48000. Not used when inputAudioFormat is AudioCodec.OPUS: Opus always decodes at 48 kHz, so the session runs at 48000.
  • inputAudioFormat: The codec of the audio you feed into the SDK via send or yieldAudioData. AudioCodec.PCM (default) for raw PCM16, AudioCodec.OPUS for Opus. Fixed for the whole session; audio that does not match is reported as AvatarError.InvalidAudioInput.
  • opusUplinkEnabled: Whether the SDK compresses the direct mode uplink to Opus. On by default, which reduces the upload to roughly an eighth at the cost of encoding on the client. Set false to keep a raw PCM uplink. Not used in BACKEND mode, which has no uplink, or with Opus input, which is already compressed. With PCM input, sampleRate must be 8000, 16000, 24000, or 48000; on any other rate the SDK logs a warning and sends raw PCM instead of failing to initialize.
  • opusBitrate: Target bitrate in bits/sec for the uplink the SDK encodes. Defaults to 48000. Higher means better quality and a larger upload.

DrivingServiceMode

Driving service modes for AvatarKit.

AudioCodec

Codec of the audio the host feeds into the SDK.

RenderQuality

Render quality tiers for AvatarKit.

FrameStarvationMode

Controls playback behavior when motion data cannot keep up with the audio clock.

LogLevel

Log levels for AvatarKit.

ConnectionState

Connection state sealed class.

ConversationState

Avatar conversation state enum.

LoadProgress

Load progress sealed class.