An android app to display movies playing now
This app uses themoviedb.org API. So, to get it working follow these steps:
- Create an account to genereate an API key. In your request for the API key specify educational/non-commercial use
- Once you have the key, add the following lines to your app's build.gradle:
debug { buildConfigField "String", "MOVIE_DB_API_KEY", ""xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx5e"" }
- Android Studio will prompt you to sync your gradle files. Go ahead and sync it and you're good to go!
This app also uses Android's data binding library to avoid the boiler plate of finding and setting views.
There is also an implementation of firebase chat and FCM notifications when a new chat message is received in the chat room.