├── .editorconfig ├── .github ├── CODEOWNERS ├── dependabot.yml ├── pull_request_template.md └── workflows │ └── android.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── audio-room-sample ├── .gitignore ├── README.md ├── build.gradle.kts └── src │ └── main │ ├── AndroidManifest.xml │ ├── kotlin │ └── io │ │ └── getstream │ │ └── android │ │ └── samples │ │ └── audioroom │ │ └── MainActivity.kt │ └── res │ ├── drawable │ ├── ic_launcher_background.xml │ └── ic_launcher_foreground.xml │ ├── mipmap-anydpi-v26 │ ├── ic_launcher.xml │ └── ic_launcher_round.xml │ ├── mipmap-hdpi │ ├── ic_launcher.webp │ └── ic_launcher_round.webp │ ├── mipmap-mdpi │ ├── ic_launcher.webp │ └── ic_launcher_round.webp │ ├── mipmap-xhdpi │ ├── ic_launcher.webp │ └── ic_launcher_round.webp │ ├── mipmap-xxhdpi │ ├── ic_launcher.webp │ └── ic_launcher_round.webp │ ├── mipmap-xxxhdpi │ ├── ic_launcher.webp │ └── ic_launcher_round.webp │ ├── values │ ├── colors.xml │ ├── strings.xml │ └── themes.xml │ └── xml │ ├── backup_rules.xml │ └── data_extraction_rules.xml ├── gradle.properties ├── gradle ├── libs.versions.toml └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── how-to-build.md ├── livestreaming-guide ├── .gitignore ├── build.gradle.kts ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── io │ │ └── getstream │ │ └── android │ │ └── guides │ │ └── livestreaming │ │ ├── MainActivity.kt │ │ ├── NavHost.kt │ │ └── screens │ │ ├── LivestreamScreen.kt │ │ └── MainScreen.kt │ └── res │ ├── drawable │ ├── ic_launcher_background.xml │ └── ic_launcher_foreground.xml │ ├── mipmap-anydpi-v26 │ ├── ic_launcher.xml │ └── ic_launcher_round.xml │ ├── mipmap-hdpi │ ├── ic_launcher.webp │ └── ic_launcher_round.webp │ ├── mipmap-mdpi │ ├── ic_launcher.webp │ └── ic_launcher_round.webp │ ├── mipmap-xhdpi │ ├── ic_launcher.webp │ └── ic_launcher_round.webp │ ├── mipmap-xxhdpi │ ├── ic_launcher.webp │ └── ic_launcher_round.webp │ ├── mipmap-xxxhdpi │ ├── ic_launcher.webp │ └── ic_launcher_round.webp │ └── values │ ├── colors.xml │ ├── strings.xml │ └── themes.xml ├── livestreaming-sample ├── .gitignore ├── README.md ├── build.gradle.kts └── src │ └── main │ ├── AndroidManifest.xml │ ├── kotlin │ └── io │ │ └── getstream │ │ └── android │ │ └── samples │ │ └── livestreaming │ │ └── MainActivity.kt │ └── res │ ├── drawable │ ├── ic_launcher_background.xml │ └── ic_launcher_foreground.xml │ ├── mipmap-anydpi-v26 │ ├── ic_launcher.xml │ └── ic_launcher_round.xml │ ├── mipmap-hdpi │ ├── ic_launcher.webp │ └── ic_launcher_round.webp │ ├── mipmap-mdpi │ ├── ic_launcher.webp │ └── ic_launcher_round.webp │ ├── mipmap-xhdpi │ ├── ic_launcher.webp │ └── ic_launcher_round.webp │ ├── mipmap-xxhdpi │ ├── ic_launcher.webp │ └── ic_launcher_round.webp │ ├── mipmap-xxxhdpi │ ├── ic_launcher.webp │ └── ic_launcher_round.webp │ └── values │ ├── colors.xml │ ├── strings.xml │ └── themes.xml ├── previews ├── cover-sample.png ├── preview0.png ├── preview1.png ├── preview2.png └── sdk-hero-android.png ├── secrets.defaults.properties ├── settings.gradle.kts ├── spotless ├── copyright.kt ├── copyright.xml └── spotless.gradle └── video-call-sample ├── .gitignore ├── README.md ├── build.gradle.kts └── src └── main ├── AndroidManifest.xml ├── kotlin └── io │ └── getstream │ └── android │ └── samples │ └── videocall │ └── MainActivity.kt └── res ├── drawable ├── ic_launcher_background.xml └── ic_launcher_foreground.xml ├── mipmap-anydpi-v26 ├── ic_launcher.xml └── ic_launcher_round.xml ├── mipmap-hdpi ├── ic_launcher.webp └── ic_launcher_round.webp ├── mipmap-mdpi ├── ic_launcher.webp └── ic_launcher_round.webp ├── mipmap-xhdpi ├── ic_launcher.webp └── ic_launcher_round.webp ├── mipmap-xxhdpi ├── ic_launcher.webp └── ic_launcher_round.webp ├── mipmap-xxxhdpi ├── ic_launcher.webp └── ic_launcher_round.webp ├── values ├── colors.xml ├── strings.xml └── themes.xml └── xml ├── backup_rules.xml └── data_extraction_rules.xml /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/Android-Video-Samples/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/Android-Video-Samples/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/Android-Video-Samples/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/Android-Video-Samples/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/android.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/Android-Video-Samples/HEAD/.github/workflows/android.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/Android-Video-Samples/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/Android-Video-Samples/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/Android-Video-Samples/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/Android-Video-Samples/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/Android-Video-Samples/HEAD/README.md -------------------------------------------------------------------------------- /audio-room-sample/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /audio-room-sample/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/Android-Video-Samples/HEAD/audio-room-sample/README.md -------------------------------------------------------------------------------- /audio-room-sample/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/Android-Video-Samples/HEAD/audio-room-sample/build.gradle.kts -------------------------------------------------------------------------------- /audio-room-sample/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/Android-Video-Samples/HEAD/audio-room-sample/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /audio-room-sample/src/main/kotlin/io/getstream/android/samples/audioroom/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/Android-Video-Samples/HEAD/audio-room-sample/src/main/kotlin/io/getstream/android/samples/audioroom/MainActivity.kt -------------------------------------------------------------------------------- /audio-room-sample/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/Android-Video-Samples/HEAD/audio-room-sample/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /audio-room-sample/src/main/res/drawable/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/Android-Video-Samples/HEAD/audio-room-sample/src/main/res/drawable/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /audio-room-sample/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/Android-Video-Samples/HEAD/audio-room-sample/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /audio-room-sample/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/Android-Video-Samples/HEAD/audio-room-sample/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /audio-room-sample/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/Android-Video-Samples/HEAD/audio-room-sample/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /audio-room-sample/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/Android-Video-Samples/HEAD/audio-room-sample/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /audio-room-sample/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/Android-Video-Samples/HEAD/audio-room-sample/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /audio-room-sample/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/Android-Video-Samples/HEAD/audio-room-sample/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /audio-room-sample/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/Android-Video-Samples/HEAD/audio-room-sample/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /audio-room-sample/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/Android-Video-Samples/HEAD/audio-room-sample/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /audio-room-sample/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/Android-Video-Samples/HEAD/audio-room-sample/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /audio-room-sample/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/Android-Video-Samples/HEAD/audio-room-sample/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /audio-room-sample/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/Android-Video-Samples/HEAD/audio-room-sample/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /audio-room-sample/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/Android-Video-Samples/HEAD/audio-room-sample/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /audio-room-sample/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/Android-Video-Samples/HEAD/audio-room-sample/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /audio-room-sample/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/Android-Video-Samples/HEAD/audio-room-sample/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /audio-room-sample/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/Android-Video-Samples/HEAD/audio-room-sample/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /audio-room-sample/src/main/res/xml/backup_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/Android-Video-Samples/HEAD/audio-room-sample/src/main/res/xml/backup_rules.xml -------------------------------------------------------------------------------- /audio-room-sample/src/main/res/xml/data_extraction_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/Android-Video-Samples/HEAD/audio-room-sample/src/main/res/xml/data_extraction_rules.xml -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/Android-Video-Samples/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/Android-Video-Samples/HEAD/gradle/libs.versions.toml -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/Android-Video-Samples/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/Android-Video-Samples/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/Android-Video-Samples/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/Android-Video-Samples/HEAD/gradlew.bat -------------------------------------------------------------------------------- /how-to-build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/Android-Video-Samples/HEAD/how-to-build.md -------------------------------------------------------------------------------- /livestreaming-guide/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /livestreaming-guide/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/Android-Video-Samples/HEAD/livestreaming-guide/build.gradle.kts -------------------------------------------------------------------------------- /livestreaming-guide/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/Android-Video-Samples/HEAD/livestreaming-guide/proguard-rules.pro -------------------------------------------------------------------------------- /livestreaming-guide/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/Android-Video-Samples/HEAD/livestreaming-guide/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /livestreaming-guide/src/main/java/io/getstream/android/guides/livestreaming/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/Android-Video-Samples/HEAD/livestreaming-guide/src/main/java/io/getstream/android/guides/livestreaming/MainActivity.kt -------------------------------------------------------------------------------- /livestreaming-guide/src/main/java/io/getstream/android/guides/livestreaming/NavHost.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/Android-Video-Samples/HEAD/livestreaming-guide/src/main/java/io/getstream/android/guides/livestreaming/NavHost.kt -------------------------------------------------------------------------------- /livestreaming-guide/src/main/java/io/getstream/android/guides/livestreaming/screens/LivestreamScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/Android-Video-Samples/HEAD/livestreaming-guide/src/main/java/io/getstream/android/guides/livestreaming/screens/LivestreamScreen.kt -------------------------------------------------------------------------------- /livestreaming-guide/src/main/java/io/getstream/android/guides/livestreaming/screens/MainScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/Android-Video-Samples/HEAD/livestreaming-guide/src/main/java/io/getstream/android/guides/livestreaming/screens/MainScreen.kt -------------------------------------------------------------------------------- /livestreaming-guide/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/Android-Video-Samples/HEAD/livestreaming-guide/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /livestreaming-guide/src/main/res/drawable/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/Android-Video-Samples/HEAD/livestreaming-guide/src/main/res/drawable/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /livestreaming-guide/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/Android-Video-Samples/HEAD/livestreaming-guide/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /livestreaming-guide/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/Android-Video-Samples/HEAD/livestreaming-guide/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /livestreaming-guide/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/Android-Video-Samples/HEAD/livestreaming-guide/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /livestreaming-guide/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/Android-Video-Samples/HEAD/livestreaming-guide/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /livestreaming-guide/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/Android-Video-Samples/HEAD/livestreaming-guide/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /livestreaming-guide/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/Android-Video-Samples/HEAD/livestreaming-guide/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /livestreaming-guide/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/Android-Video-Samples/HEAD/livestreaming-guide/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /livestreaming-guide/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/Android-Video-Samples/HEAD/livestreaming-guide/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /livestreaming-guide/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/Android-Video-Samples/HEAD/livestreaming-guide/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /livestreaming-guide/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/Android-Video-Samples/HEAD/livestreaming-guide/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /livestreaming-guide/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/Android-Video-Samples/HEAD/livestreaming-guide/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /livestreaming-guide/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/Android-Video-Samples/HEAD/livestreaming-guide/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /livestreaming-guide/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/Android-Video-Samples/HEAD/livestreaming-guide/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /livestreaming-guide/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/Android-Video-Samples/HEAD/livestreaming-guide/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /livestreaming-guide/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/Android-Video-Samples/HEAD/livestreaming-guide/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /livestreaming-sample/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /livestreaming-sample/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/Android-Video-Samples/HEAD/livestreaming-sample/README.md -------------------------------------------------------------------------------- /livestreaming-sample/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/Android-Video-Samples/HEAD/livestreaming-sample/build.gradle.kts -------------------------------------------------------------------------------- /livestreaming-sample/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/Android-Video-Samples/HEAD/livestreaming-sample/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /livestreaming-sample/src/main/kotlin/io/getstream/android/samples/livestreaming/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/Android-Video-Samples/HEAD/livestreaming-sample/src/main/kotlin/io/getstream/android/samples/livestreaming/MainActivity.kt -------------------------------------------------------------------------------- /livestreaming-sample/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/Android-Video-Samples/HEAD/livestreaming-sample/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /livestreaming-sample/src/main/res/drawable/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/Android-Video-Samples/HEAD/livestreaming-sample/src/main/res/drawable/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /livestreaming-sample/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/Android-Video-Samples/HEAD/livestreaming-sample/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /livestreaming-sample/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/Android-Video-Samples/HEAD/livestreaming-sample/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /livestreaming-sample/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/Android-Video-Samples/HEAD/livestreaming-sample/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /livestreaming-sample/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/Android-Video-Samples/HEAD/livestreaming-sample/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /livestreaming-sample/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/Android-Video-Samples/HEAD/livestreaming-sample/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /livestreaming-sample/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/Android-Video-Samples/HEAD/livestreaming-sample/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /livestreaming-sample/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/Android-Video-Samples/HEAD/livestreaming-sample/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /livestreaming-sample/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/Android-Video-Samples/HEAD/livestreaming-sample/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /livestreaming-sample/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/Android-Video-Samples/HEAD/livestreaming-sample/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /livestreaming-sample/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/Android-Video-Samples/HEAD/livestreaming-sample/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /livestreaming-sample/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/Android-Video-Samples/HEAD/livestreaming-sample/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /livestreaming-sample/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/Android-Video-Samples/HEAD/livestreaming-sample/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /livestreaming-sample/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/Android-Video-Samples/HEAD/livestreaming-sample/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /livestreaming-sample/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/Android-Video-Samples/HEAD/livestreaming-sample/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /livestreaming-sample/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/Android-Video-Samples/HEAD/livestreaming-sample/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /previews/cover-sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/Android-Video-Samples/HEAD/previews/cover-sample.png -------------------------------------------------------------------------------- /previews/preview0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/Android-Video-Samples/HEAD/previews/preview0.png -------------------------------------------------------------------------------- /previews/preview1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/Android-Video-Samples/HEAD/previews/preview1.png -------------------------------------------------------------------------------- /previews/preview2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/Android-Video-Samples/HEAD/previews/preview2.png -------------------------------------------------------------------------------- /previews/sdk-hero-android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/Android-Video-Samples/HEAD/previews/sdk-hero-android.png -------------------------------------------------------------------------------- /secrets.defaults.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/Android-Video-Samples/HEAD/secrets.defaults.properties -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/Android-Video-Samples/HEAD/settings.gradle.kts -------------------------------------------------------------------------------- /spotless/copyright.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/Android-Video-Samples/HEAD/spotless/copyright.kt -------------------------------------------------------------------------------- /spotless/copyright.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/Android-Video-Samples/HEAD/spotless/copyright.xml -------------------------------------------------------------------------------- /spotless/spotless.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/Android-Video-Samples/HEAD/spotless/spotless.gradle -------------------------------------------------------------------------------- /video-call-sample/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /video-call-sample/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/Android-Video-Samples/HEAD/video-call-sample/README.md -------------------------------------------------------------------------------- /video-call-sample/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/Android-Video-Samples/HEAD/video-call-sample/build.gradle.kts -------------------------------------------------------------------------------- /video-call-sample/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/Android-Video-Samples/HEAD/video-call-sample/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /video-call-sample/src/main/kotlin/io/getstream/android/samples/videocall/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/Android-Video-Samples/HEAD/video-call-sample/src/main/kotlin/io/getstream/android/samples/videocall/MainActivity.kt -------------------------------------------------------------------------------- /video-call-sample/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/Android-Video-Samples/HEAD/video-call-sample/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /video-call-sample/src/main/res/drawable/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/Android-Video-Samples/HEAD/video-call-sample/src/main/res/drawable/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /video-call-sample/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/Android-Video-Samples/HEAD/video-call-sample/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /video-call-sample/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/Android-Video-Samples/HEAD/video-call-sample/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /video-call-sample/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/Android-Video-Samples/HEAD/video-call-sample/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /video-call-sample/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/Android-Video-Samples/HEAD/video-call-sample/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /video-call-sample/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/Android-Video-Samples/HEAD/video-call-sample/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /video-call-sample/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/Android-Video-Samples/HEAD/video-call-sample/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /video-call-sample/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/Android-Video-Samples/HEAD/video-call-sample/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /video-call-sample/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/Android-Video-Samples/HEAD/video-call-sample/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /video-call-sample/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/Android-Video-Samples/HEAD/video-call-sample/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /video-call-sample/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/Android-Video-Samples/HEAD/video-call-sample/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /video-call-sample/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/Android-Video-Samples/HEAD/video-call-sample/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /video-call-sample/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/Android-Video-Samples/HEAD/video-call-sample/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /video-call-sample/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/Android-Video-Samples/HEAD/video-call-sample/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /video-call-sample/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/Android-Video-Samples/HEAD/video-call-sample/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /video-call-sample/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/Android-Video-Samples/HEAD/video-call-sample/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /video-call-sample/src/main/res/xml/backup_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/Android-Video-Samples/HEAD/video-call-sample/src/main/res/xml/backup_rules.xml -------------------------------------------------------------------------------- /video-call-sample/src/main/res/xml/data_extraction_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/Android-Video-Samples/HEAD/video-call-sample/src/main/res/xml/data_extraction_rules.xml --------------------------------------------------------------------------------