Android application for streaming video in real time using Firebase.
- You can upload video to storage
- You can watch your vodeo from storage
- You can watch your video in fullscreen mode
- You can easily modify the program code
- Clone this repo
- Open in Adroid Studio
- Create new Firebase project
- Rename the project package name
- Add google-services.json in /app folder
- In the Firebase console switch on Storage & Real-time Database
- Edit the Firebase Storage rules
- Have fun! 😏
service firebase.storage {
match /b/YOUR_APP_ID.appspot.com/o {
match /{allPaths=**} {
allow read, write: if true;
}
}
}
{
"rules": {
".read": true,
".write": true
}
}