Livestream-Clone-Android
Livestream-Clone-Android copied to clipboard
Build a Livestream Video & Chat App for Android
Important
This repository is now archived. You can find this sample and more in the Android Samples repository instead.
Build a Livestream Video & Chat App for Android
This repository is part of a tutorial on how to build a livestream video and chat application for Android (with Kotlin), originally published on The Stream Blog.
Building the Android App
- Add a file inside project root directory named
secret.propertieshaving the following contents:
StreamApiKey=xxx
UserToken=xxx
- Replace
xxxwith your values.
StreamApiKeyis a public key which you can get by registering your chat app on getstream.io.UserTokenis a JWT token of your app user. You can generate one here: https://getstream.io/chat/docs/token_generator/?language=kotlin. You'll need to use there your private key (secretfrom getstream.io dashboard) and pass your desired user ID.
./gradlew build
Final Result
Official Blog Post / Tutorial: https://getstream.io/blog/livestream-video-and-chat-app-android/
