Installation
Add the Vio Kotlin SDK to your Android project using Gradle.
Requirements
| Platform | Minimum |
|---|---|
| Android API | 24+ (Android 7.0) |
| Kotlin | 1.9.0+ |
| Jetpack Compose | 1.5.14+ |
| Android Studio | Hedgehog (2023.1.1)+ |
Gradle
The SDK is published as live.vio:vio-kotlin-sdk.
build.gradle.kts (Kotlin DSL)
dependencies {
implementation("live.vio:vio-kotlin-sdk:1.0.0-alpha")
}Make sure mavenCentral() or your custom repository is in your list:
repositories {
mavenCentral()
google()
}build.gradle (Groovy)
dependencies {
implementation "live.vio:vio-kotlin-sdk:1.0.0-alpha"
}Permissions
Add to your AndroidManifest.xml:
<uses-permission android:name="android.permission.INTERNET" />Modules
| Module | Description |
|---|---|
VioCore | Required — configuration, CampaignManager, models |
VioEngagementSystem | Polls, contests, WebSocket engagement |
VioEngagementUI | Engagement Composable components |
VioCastingUI | Sports casting overlays |
Next Steps
- Getting Started — SDK setup and first broadcast connection
- Configuration — Configure the SDK for your app
Last updated on