React Native library to interact with Status Keycard using NFC connection https://keycard.status.im
Go to file
Dmitry Novotochinov 11ae795703
emit init event
2019-01-11 21:02:16 +03:00
android emit init event 2019-01-11 21:02:16 +03:00
.gitattributes initial commit 2018-11-22 19:49:00 +03:00
.gitignore initial commit 2018-11-22 19:49:00 +03:00
LICENSE Rename LICENSE.md to LICENSE 2018-12-22 21:15:52 +03:00
README.md initial commit 2018-11-22 19:49:00 +03:00
index.js initial commit 2018-11-22 19:49:00 +03:00
package.json Call start() after SmartCard initialized 2019-01-11 20:35:29 +03:00

README.md

react-native-status-keycard

Getting started

$ npm install react-native-status-keycard --save

Mostly automatic installation

$ react-native link react-native-status-keycard

Manual installation

iOS

  1. In XCode, in the project navigator, right click LibrariesAdd Files to [your project's name]
  2. Go to node_modulesreact-native-status-keycard and add RNStatusKeycard.xcodeproj
  3. In XCode, in the project navigator, select your project. Add libRNStatusKeycard.a to your project's Build PhasesLink Binary With Libraries
  4. Run your project (Cmd+R)<

Android

  1. Open up android/app/src/main/java/[...]/MainActivity.java
  • Add import com.reactlibrary.RNStatusKeycardPackage; to the imports at the top of the file
  • Add new RNStatusKeycardPackage() to the list returned by the getPackages() method
  1. 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')
    
  2. Insert the following lines inside the dependencies block in android/app/build.gradle:
      compile project(':react-native-status-keycard')
    

Windows

Read it! :D

  1. In Visual Studio add the RNStatusKeycard.sln in node_modules/react-native-status-keycard/windows/RNStatusKeycard.sln folder to their solution, reference from their app.
  2. Open up your MainPage.cs app
  • Add using Status.Keycard.RNStatusKeycard; to the usings at the top of the file
  • Add new RNStatusKeycardPackage() to the List<IReactPackage> returned by the Packages method

Usage

import RNStatusKeycard from 'react-native-status-keycard';

// TODO: What to do with the module?
RNStatusKeycard;