This repository contains a mobile application made with React-Native. It allows user to know the best movies in the whole world.
- Install node modules with npm.
npm install
Or with yarn:
yarn
- Install pods.
cd ios
pod install
- Change build system to Legacy:
- Open iOS project on xcode > File > Workspace settings... > Change Build system to "Legacy"
- Set up .env file
API_BASEURL='https://api.themoviedb.org/3'
API_KEY=your key from TMDB
API_IMAGES_BASEURL='http://image.tmdb.org/t/p/w500'
- Build the main.jsbundle file.
npm run build:ios
or
npm run build:android
Then now you can run the app in development.
npm run ios
or
npm run android
For building an IPA, you need:
- Access to the certificates repository.
Do the following:
cd ios
fastlane sigh --adhoc
fastlane pipeline
TODO