How to use the apptentive-react-native.Apptentive.register function in apptentive-react-native

To help you get started, we’ve selected a few apptentive-react-native examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github sovrin-foundation / connector-app / app / feedback / index.js View on Github external
function ApptentiveMessage() {
  if (__DEV__) configuration.logLevel = 'verbose'
  Apptentive.register(configuration)
    .then(() => {
      Apptentive.onAuthenticationFailed = reason => {
        if (__DEV__) {
          console.log('Error', `Authentication failed:\n${reason}`)
        }
      }
    })
    .catch(error => {
      if (__DEV__) {
        console.log('Error', `Can't register Apptentive:\n${error.message}`)
      }
    })
}