Skip to content

Latest commit

 

History

History
91 lines (63 loc) · 1.45 KB

README.md

File metadata and controls

91 lines (63 loc) · 1.45 KB

Sportify App Copy Demo

  

  

Prerequisites

Before being able to install and run the app, there are some dependencies you will need setup:

  • git
  • yarn
  • nodeJS

To run with the iOS simulator, you will also need:

  • ruby
  • cocoapods
  • XCode

For Android, you will need

  • Java JDK
  • Android Studio

Getting Started

1. Clone the repository

git clone [email protected]:Clecotech/imdb_copy.git

2. Install JS dependencies

yarn global add react-native-cli
yarn install
react-native link

For iOS development, you will also need to install the cocoapod dependencies:

cd ios
pod repo update
pod install

3. Run the app

To build and run the iOS app in the simulator

react-native run-ioS

Alternatively, to run the Android version of the app

react-native run-android

Troubleshooting

iOS version

If you see the app open on iOS/ANDROID and immediately close, ensure the device/simulator is running iOS/ANDROID.

Build fails in iOS

This may be a problem with dependencies not being correctly linked to the xcode project. To fix, try the following:

cd ios
pod repo update
pod install

cd ..
react-native link