/react-native-qonversion-bridge

Native module for setting up Qonversion.io from React Native

Primary LanguageJavaMIT LicenseMIT

react-native-qonversion-bridge

Getting started

$ npm install react-native-qonversion-bridge --save

Mostly automatic installation

$ react-native link react-native-qonversion-bridge

Usage

import QonversionBridge from 'react-native-qonversion-bridge';

QonversionBridge.launch(
    apiKey, // https://dash.qonversion.io/app/settings
    customUserId,
    (resp) => {
        console.log(`Launched Qonversion with: ${resp}`);
    },
);