# superid-react-native

> SuperID SDK in ReactNative

Latest version **0.7.0** (published 2016-12-28) · MIT license · 0 weekly downloads

## Install

```sh
npm install superid-react-native
pnpm add superid-react-native
yarn add superid-react-native
bun add superid-react-native
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.7.0 |
| Published | 2016-12-28 |
| First published | 2016-07-05 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 1 |
| Author | Yourtion |
| Maintainers | yourtion |
| Keywords | SuperID, facelogin, react, react-native |

## Links

- npm: https://www.npmjs.com/package/superid-react-native
- Repository: https://github.com/yourtion/ReactNative-SuperID
- Homepage: https://github.com/yourtion/ReactNative-SuperID#readme
- Issues: https://github.com/yourtion/ReactNative-SuperID/issues
- npm.io page: https://npm.io/package/superid-react-native

## Alternatives

- [mobx-react](https://npm.io/package/mobx-react.md) — 2.8M weekly downloads
- [rc-tree](https://npm.io/package/rc-tree.md) — 2.6M weekly downloads
- [@react-oauth/google](https://npm.io/package/@react-oauth/google.md) — 1.3M weekly downloads
- [@wagmi/connectors](https://npm.io/package/@wagmi/connectors.md) — 877.0K weekly downloads
- [vee-validate](https://npm.io/package/vee-validate.md) — 836.4K weekly downloads

## Recent versions

- 0.7.0 (latest) — 2016-12-28
- 0.6.0 — 2016-08-25
- 0.5.0 — 2016-08-24
- 0.4.0 — 2016-08-24
- 0.3.0 — 2016-07-08
- 0.2.0 — 2016-07-05
- 0.1.0 — 2016-07-05

## README

# ReactNative-SuperID

SuperID SDK in ReactNative

## Installation

```
npm i --save superid-react-native
```

### Configure your React Native Application

#### Mostly automatic install with react-native

```
react-native link  superid-react-native
```

#### iOS

Cocapods:

```ruby
pod 'SuperIDRN', :path => './node_modules/superid-react-native/iOS'
```

Run `pod install`

#### Android

1. `android/settings.gradle`:: Add the following snippet

```gradle
include ':SuperIDRN'
project(':SuperIDRN').projectDir = file('../node_modules/superid-react-native/Android')
```

2. `android/app/build.gradle`: Add in dependencies block.

```gradle
compile project(':SuperIDRN')
```

3. in your `MainActivity` (or equivalent) the SIDRNPackage needs to be added. Add the import at the top:

```java
import com.yourtion.SuperIDRN.SIDRNPackage;;
```

4. In order for React Native to use the package, add it the packages inside of the class extending ReactActivity.

```java
@Override
protected List<ReactPackage> getPackages() {
  return Arrays.<ReactPackage>asList(
  new MainReactPackage(),
  ...
  new SIDRNPackage()
  );
}
```

---
_Source: https://npm.io/package/superid-react-native · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
