Skip to content

Commit

Permalink
Added more info in readme
Browse files Browse the repository at this point in the history
  • Loading branch information
skrafft committed Sep 27, 2019
1 parent 0858f22 commit e3a6333
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,20 @@ React native wrapper for Jitsi Meet SDK

`npm install react-native-jitsi-meet --save`

For versions higher than 2.0.0, you need to add the following piece of code in your ```metro.config.js``` file to avoid conflicts between react-native-jitsi-meet and react-native in metro bundler.

```
const blacklist = require('metro-config/src/defaults/blacklist');
module.exports = {
resolver: {
blacklistRE: blacklist([
/ios\/Pods\/JitsiMeetSDK\/Frameworks\/JitsiMeet.framework\/assets\/node_modules\/react-native\/.*/,
]),
},
};
```

## Use (>= 2.0.0)

The following component is an example of use:
Expand Down

0 comments on commit e3a6333

Please sign in to comment.