$ npm install leap-aui-react-native --save
To initialize Leap add the following inside componentDidMount() {}
in your App.js
import LeapAUIReactNative from 'leap-aui-react-native';
export class App extends React.Component {
componentDidMount() {
Platform.select({
android: () => LeapAUIReactNative.start('ANDROID_API_KEY'),
})()
}
}