Skip to content

Latest commit

 

History

History
58 lines (37 loc) · 901 Bytes

CONTRIBUTING.md

File metadata and controls

58 lines (37 loc) · 901 Bytes

Contributing

Development workflow

Install dependencies

Use yarn to install development dependencies.

yarn

If you don't have expo-cli installed:

npm install -g expo-cli

Move to the example directory and install dependencies there too.

cd example
yarn
cd ios && pod install && cd ..

Example app

Start the example app to test your changes. You can use one of the following commands from the example root, depending on the platform you want to use.

From the example directory:

iOS

yarn ios

for running in device

yarn device

I also recommend opening example/ios/exmaple.xcworkspace in Xcode if you need to make changes to native code.

Android

yarn android

I also recommend opening example/android in Android Studio if you need to make changes to native code.

Open a pull request!