Andrioid app to search, sync and share movies and series.
git clone https://github.com/rldona/filmist.git
yarn global add react-native
yarn install
react-native install android
react-native run-android
Add your Firebase configuration and API key MovieDB -> src/config.js
const config = {
// Firebase config
firebase: {
apiKey: 'apiKey',
authDomain: 'authDomain',
databaseURL: 'databaseURL',
storageBucket: 'storageBucket',
messagingSenderId: 'messagingSenderId'
},
// MoviesDB config
moviedb: {
endPoint: 'http://api.themoviedb.org/3/',
apiKey: 'API_KEY'
}
};