2022-05-10 23:42:15 +00:00
|
|
|
# @waku/react-native
|
|
|
|
Waku React Native
|
|
|
|
## Installation
|
|
|
|
|
|
|
|
```sh
|
|
|
|
npm install @waku/react-native
|
|
|
|
```
|
|
|
|
|
2023-01-23 17:28:17 +00:00
|
|
|
Edit `settings.gradle` from your app and add:
|
|
|
|
```
|
|
|
|
include ':gowaku'
|
|
|
|
project(':gowaku').projectDir = new File(rootProject.projectDir, './../node_modules/@waku/react-native/android/gowaku')
|
|
|
|
```
|
|
|
|
|
2022-05-10 23:42:15 +00:00
|
|
|
## Usage
|
|
|
|
|
|
|
|
```js
|
2023-01-05 23:22:30 +00:00
|
|
|
import * as waku from "@waku/react-native";
|
2022-05-10 23:42:15 +00:00
|
|
|
```
|
|
|
|
|
2023-01-05 23:22:30 +00:00
|
|
|
See also [Fixing `route ip+net: netlinkrib: permission denied` in android](android-netlink.md)
|
|
|
|
|
2022-05-10 23:42:15 +00:00
|
|
|
## Contributing
|
|
|
|
|
|
|
|
See the [contributing guide](CONTRIBUTING.md) to learn how to contribute to the repository and the development workflow.
|
|
|
|
|
|
|
|
## License
|
|
|
|
|
|
|
|
MIT
|
2022-08-29 15:32:20 +00:00
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
Made with [create-react-native-library](https://github.com/callstack/react-native-builder-bob)
|