Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add run instructions #8

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 31 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,33 @@
# RNUrlPreviewExample
react-native-url-preview demo

# Usage
***NOTE: you may encounter an error, `EMFILE` too many open files, this can be fixed by either increasing max open files ulimit or installing the following package:***

```
npm install watchman
```

## Dependencies installation
As a non root user, run the following:

```
npm i
```

## IOS Usage

In order to run this in iOS simulator (limited to Mac OS) you should run the following command (replacing preferred simulator):

```
react-native run-ios --simulator <PREFERRED_SIMULATOR>
```

## Android Usage

In order to run this in android simulator you should run the following command:

```
export JAVA_HOME=/Applications/Android\ Studio.app/Contents/jre/jdk/Contents/Home # use embedded JDK instead of system one
react-native run-android
```