Skip to content
This repository was archived by the owner on Feb 4, 2020. It is now read-only.

Latest commit

 

History

History
24 lines (15 loc) · 752 Bytes

File metadata and controls

24 lines (15 loc) · 752 Bytes

README for fk-app

Commands

Android

Run developer Android app (requires package manager running on developer machine)

react-native run-android

Generate and run release variant. (Requires signing to be configured)

react-native run-android --variant=release

Generate a signed APK. (Requires signing to be configured)

cd android && ./gradlew assembleRelease

iOS

Troubleshooting

Error: Error watching file for changes: EMFILE

This happened on iOS when doing a react-native run-ios. I ended up doing a brew install watchman to fix this issue. I did try a few other things, like upping limits using various commands but they didn’t seem to help.