Skip to content

Commit

Permalink
Merge pull request #202 from xmtp/ar/update-readme
Browse files Browse the repository at this point in the history
Update ReadMe
  • Loading branch information
alexrisch authored Jan 9, 2024
2 parents 900c44e + 6c009e6 commit 5b43135
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Global rule:
* @xmtp/mobile
*.md @jhaaaa
*.md @fabriguespe
19 changes: 17 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,25 @@ npx expo prebuild

For bare React Native projects, [install and configure the `expo` package](https://docs.expo.dev/bare/installing-expo-modules/) before continuing.

### Add the package to your yarn dependencies
then add the required babel plugin
```bash
yarn add @babel/plugin-proposal-export-namespace-from -D
```
then add the plugin to your babel.config.js
```js
module.exports = {
presets: ['module:@react-native/babel-preset'],
plugins: [
'@babel/plugin-proposal-export-namespace-from',
// ... other plugins
],
};
```

### Add the package to your dependencies

```bash
yarn i @xmtp/react-native-sdk
yarn add @xmtp/react-native-sdk
```

### Configure for iOS
Expand Down

0 comments on commit 5b43135

Please sign in to comment.