Orchestration SDKs

Step 1. Adding core dependencies

PingOne Advanced Identity Cloud PingAM React Native

Installing dependencies

  1. Add the core dependencies.

    The External IdP module requires the Core module. If you have not already installed it, add both packages at the same time:

    • yarn

    • npm

    Installing the Core and External IdP packages with yarn
    yarn add @ping-identity/rn-core
    yarn add @ping-identity/rn-external-idp
    Installing the Core and External IdP packages with npm
    npm install @ping-identity/rn-core
    npm install @ping-identity/rn-external-idp
  2. Optionally, add the Logger module:

    • yarn

    • npm

    yarn add @ping-identity/rn-logger
    npm install @ping-identity/rn-logger

Preparing the Android project

Android requires no additional linking steps. The native module resolves automatically at build time.

Preparing the iOS project

After installing, link the native iOS dependencies by running pod install in your ios/ directory:

cd ios && pod install