Skip to main content
The Daily Client SDK for Android is a native Kotlin/Java library built on WebRTC. It handles media negotiation, network traversal, and participant management so you can focus on building your UI.

Quickstart

Build a working video call app step by step

Screen sharing

Add screen share to your Android app

API reference

Full Kotlin/Java API docs

Hello, world

Add the SDK to your build.gradle, then join a call:

API structure

The SDK is organized around the tasks involved in building a call. For each task you get methods to update state, methods to get current state, and events via CallClientListener to react to changes.

Call lifecycle

join(), leave(), callState(), CallStateUpdated

Participants

participants(), ParticipantJoined, ParticipantUpdated, ParticipantLeft

Media inputs

updateInputs(), setInputsEnabled(), startScreenShare(), InputsUpdated

Publishing

updatePublishing(), setIsPublishing(), PublishingUpdated

Subscriptions

updateSubscriptions(), updateSubscriptionProfiles(), setSubscriptionState()

Active speaker

activeSpeaker(), ActiveSpeakerChanged

Resources

Demo app

A complete working example on GitHub

Starter kit

Production-ready boilerplate from Daily’s engineering team

Requirements

  • minSdkVersion >= 23 (Android 6.0)
  • Kotlin 1.6 or later recommended