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