Ping SDKs

Initialize the Ping (ForgeRock) Authenticator module

Android

Start the module

To use the features of the Ping (ForgeRock) Authenticator module, add code similar to the following to your application:

FRAClient fraClient = new FRAClient.FRAClientBuilder()
    .withContext(this)
    .start();
java

iOS

Start the module

To use the features of the Ping (ForgeRock) Authenticator module in your iOS app, first import the FRAuthenticator:

import FRAuthenticator
swift

And secondly, add code similar to the following to your application:

FRAClient.start()
swift