Guides

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:

  1. Download the Falcon Secure SDK library.

  2. Copy the AAR file into the libs directory of your Android project.

  3. Add the following dependency in your app's build.gradle file:

  4. 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;