react-native-status-keycard/README.md

44 lines
1.6 KiB
Markdown
Raw Permalink Normal View History

2018-11-22 16:49:00 +00:00
2019-05-02 18:05:41 +00:00
# React Native Status Keycard [![npm version](https://badge.fury.io/js/react-native-status-keycard.svg)](https://badge.fury.io/js/react-native-status-keycard)
React Native library to interact with [Keycard](https://keycard.status.im/) using [Java SDK](https://github.com/status-im/status-keycard-java)
2018-11-22 16:49:00 +00:00
## Getting started
`$ npm install react-native-status-keycard --save`
### Mostly automatic installation
`$ react-native link react-native-status-keycard`
### Manual installation
2019-05-02 18:05:41 +00:00
Android is the only platform supported by now.
2018-11-22 16:49:00 +00:00
#### Android
2019-05-02 19:25:25 +00:00
1. Open up `android/app/src/main/java/[...]/MainApplication.java`
- Add `import im.status.ethereum.keycard.RNStatusKeycardPackage;` to the imports at the top of the file
2018-11-22 16:49:00 +00:00
- Add `new RNStatusKeycardPackage()` to the list returned by the `getPackages()` method
2. Append the following lines to `android/settings.gradle`:
```
include ':react-native-status-keycard'
project(':react-native-status-keycard').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-status-keycard/android')
```
3. Insert the following lines inside the dependencies block in `android/app/build.gradle`:
```
compile project(':react-native-status-keycard')
```
2019-05-02 19:25:25 +00:00
4. Add `<uses-permission android:name="android.permission.NFC"/>` to `android/app/src/main/AndroidManifest.xml` to enable NFC permission.
5. Make sure `minSdkVersion` is 18 in `android/build.gradle`.
2018-11-22 16:49:00 +00:00
## Usage
2019-05-02 18:05:41 +00:00
Take a look into [docs](./docs/usage.md)
For more usage examples, please refer to https://github.com/status-im/status-react (assuming you can read Clojure)
2019-05-02 18:10:47 +00:00
2019-05-02 18:05:41 +00:00
For Keycard API documention, please look into https://status.im/keycard_api/
2018-11-22 16:49:00 +00:00