Android SDK
FalconSecureSDK Documentation
This article walks you through how to integrate Falcon Secure SDK into your project through the aar file.
Overview
The FalconSecureSDK
is an Android SDK designed to simplify the integration of secure authentication and transaction authorization processes into your iOS applications. It provides convenient methods for initiating device binding, simulating verification SMS, checking binding status, generating request tokens, sending registration SMS, initializing API connections, and making secure requests.
Adding the Falcon Secure SDK
Download the Falcon Secure SDK library and add it to your Android project. Follow these steps:
-
Download the Falcon Secure SDK library.
-
Copy the AAR file into the libs directory of your Android project.
-
Add the following dependency in your app's build.gradle file:
-
implementation files('libs/falconsecuresdk.aar')
Import FalconSecureSDK
Import the SDK using the following line
import com.falconfsauth.sdk.FalconSecureSDK;
import com.falconfsauth.sdk.SendSMSCallback;
import com.falconfsauth.sdk.Utils.ApiUtils;
Updated 9 months ago