Skip to content
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
```