SEON Mobile SDK React Native Wrapper
You can integrate our device fingerprinting module into your React Native project. It contains an SDK for both Android and iOS apps. You can find more info about the iOS and Android SDK on GitHub. Install the npm package in your existing project:
Installation
npm install @seontechnologies/seon-react-native-mobile-wrapper
Usage
import Seon from '@seontechnologies/seon-react-native-mobile-wrapper';
Seon.setSessionId('CUSTOM-SESSION-ID');
Seon.setLoggingEnabled(true);
try {
const fingerprint = await Seon.getFingerprintBase64();
} catch (e) {
}