How to use the instabug-reactnative.startWithToken function in instabug-reactnative

To help you get started, we’ve selected a few instabug-reactnative 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 berty / berty / client / packages / reporter / InstabugReporter.js View on Github external
BugReporting.invocationOptions.emailFieldOptional,
  BugReporting.invocationOptions.commentFieldRequired,
])
// FIXME: android: attempt to invoke method intValue on a null object ref, ios: unrecognized selector sent to instance
// BugReporting.setReportTypes([
//   BugReporting.reportType.bug,
//   BugReporting.reportType.feedback,
//   BugReporting.reportType.question,
// ])
Instabug.setCrashReportingEnabled(INSTABUG_CRASH_REPORTING_ENABLED)
Platform.OS === 'ios' && BugReporting.setAutoScreenRecordingMaxDuration(20)
BugReporting.setAutoScreenRecordingEnabled(
  INSTABUG_BUG_REPORTING_AUTO_SCREEN_RECORDING
)

Instabug.startWithToken(INSTABUG_TOKEN, [
  Instabug.invocationEvent[INSTABUG_INVOCATION_EVENT],
])

if (__DEV__) {
  const DevMenu = require('react-native-dev-menu')
  DevMenu.addItem('Show Instabug', () => BugReporting.invoke())
}

export default InstabugReporter
github Instabug / Instabug-React-Native / InstabugSample / index.android.js View on Github external
constructor(props) {
        super(props);
        Instabug.startWithToken('0f0dc916bd9175e3b5d2fdf0cfa49a69',
            Instabug.invocationEvent.none);
    }
github Instabug / Instabug-React-Native / InstabugSample / index.ios.js View on Github external
Instabug.isRunningLive(function (isLive) {
      if (isLive) {
        Instabug.startWithToken('LIVE_TOKEN', Instabug.invocationEvent.shake);
      } else {
        Instabug.startWithToken('BETA_TOKEN', Instabug.invocationEvent.shake);
      }
    });