Skip to content

eakmotion/MyMoodDiary

Repository files navigation

My Mood Diary

This is a simple React Native Application

iOS

Developer setup

This project is built using plain React Native. So to run it locally, ensure you've set up your developer environment as described in the React Native Docs.

Install the JavaScript dependencies:

yarn
# or
npm install

(iOS only) install the native dependencies:

cd ios
pod install
cd ..

Run the packager:

yarn start

Build the iOS app:

yarn ios
# or
npm run ios

Build the Android app:

yarn android
# or
npm run android