my-sdk_test
v1.0.1
Published
A React Native compatible Android SDK for KYC (Know Your Customer) integration.
Readme
Android KYC SDK
A React Native compatible Android SDK for KYC (Know Your Customer) integration.
Installation
npm install my-android-sdkUsage
import KYCSDK from 'my-android-sdk';
// Initialize the SDK with configuration
await KYCSDK.init({
userEmail: '[email protected]',
userPassword: 'password',
returnUrl: 'https://your-return-url.com/callback'
});
// Start the KYC process
const result = await KYCSDK.start();API Reference
init(config)
Initializes the SDK with the required configuration.
Parameters:
config(object):userEmail(string): User's email addressuserPassword(string): User's passwordreturnUrl(string): URL to receive KYC results
start()
Starts the KYC verification process.
Requirements
- React Native 0.60.0 or newer
- Android API level 21 or higher
License
ISC
