Skip to content

RtkSetupFragment

Last updated View as MarkdownAgent setup

A screen shown before joining the meeting, where you can edit your display name and media settings.

Usage Examples

Basic Usage

val rtkSetupFragment = RtkSetupFragment()
supportFragmentManager.beginTransaction()
    .add(R.id.fragmentContainer, rtkSetupFragment)
    .commit()

Was this helpful?