@envoy/instabug-reactnative

2.8.3 • Public • Published

Instabug for react native

npm npm npm Twitter Analytics

Upgrading? Check the Upgrade Guide before bumping to a new major version.

Instabug is a reliable bug reporting and user feedback platform that empowers mobile-first companies to iterate faster and enhance their app quality. Gather bug reports from your users and the Instabug SDK will automatically capture an environment snapshot of your user's device including all console logs, server-side network requests, bug reproduction steps and more details that would help you debug and fix bugs faster.

For more info, visit Instabug.com.

Installation

This section explains how to install Instabug SDK into your React Native application.

  1. Open the terminal and navigate to your React Native Directory. Then run the following command.
npm install instabug-reactnative

or

yarn add instabug-reactnative
  1. Install Ruby. (You can skip this step if you're building for Android only)

  2. Install xcodeproj gem by running the following command. (You can also skip this step if you're building for Android only)

gem install xcodeproj
  1. Link the bridging files in the npm package to the ios project use the following command.
react-native link instabug-reactnative

Using Instabug

  1. To start using Instabug, import it into your index.ios.js and index.android.js file.
import Instabug from 'instabug-reactnative';
  1. Then initialize it in the constructor or componentWillMount. This line will let the Instabug SDK work with the default behavior. The SDK will be invoked when the device is shaken. You can customize this behavior through the APIs (You can skip this step if you are building an Android app only).
Instabug.startWithToken('IOS_APP_TOKEN', Instabug.invocationEvent.shake);
  1. Open android/app/src/main/java/[...]/MainApplication.java You should find the getPackages method looks like the following snippet. You just need to add your Android app token (You can skip this step if you are building an iOS app only). You can change the invocation event from here, simply by replacing the "shake" with any of the following "button", "none", "screenshot", or "swipe". You can change the primary color by replacing the "#1D82DC" with any colour of your choice. In the case that you are using the floating button as an invocation event, you can change the floating button edge and the floating button offset using the last two methods, by replacing "left" to "right", and by changing the offset number.
@Override
protected List<ReactPackage> getPackages() {
	return Arrays.<ReactPackage>asList(
	new MainReactPackage(),
	new RNInstabugReactnativePackage.Builder("YOUR_APP_TOKEN", MainApplication.this)
                            .setInvocationEvent("shake")
                            .setPrimaryColor("#1D82DC")
                            .setFloatingEdge("left")
                            .setFloatingButtonOffsetFromTop(250)
                            .build()
}

You can find your app token by selecting the SDK tab from your Instabug dashboard.

Upgrading guide

Version 2.0.0

  • removes dependency on Cocoapods when installing Instabug
  • ensures consistency between the React Native SDK, and the Native SDK

Upgrading from 1.x.x

When upgrading from version 1.x.x, please make sure you do the following steps:

  1. Run
npm install instabug-reactnative
  1. Open your Pod file and delete this line pod 'Instabug', '~> 7.0'

  2. Run this command from inside the ios directory inside your root project's directory

pod install
  1. Run this command from your root project's directory. Make sure you have Ruby and xcodeproj gem installed before running this last command. (You can skip installing Ruby if you're building an Android app only)
react-native link instabug-reactnative

Upgrading from 2.0.x

When upgrading from 2.0.x to 2.1.x, please make sure you do the following steps:

  1. Unlink the project before upgrading to the new version
reacy-native unlink instabug-reactnative
  1. Install the new version by running
npm install instabug-reactnative
  1. Link the project by running
react-native link instabug-reactnative

Microphone and Photo Library Usage Description (iOS Only)

Instabug needs access to the microphone and photo library to be able to let users add audio and video attachments. Starting from iOS 10, apps that don’t provide a usage description for those 2 permissions would be rejected when submitted to the App Store.

For your app not to be rejected, you’ll need to add the following 2 keys to your app’s info.plist file with text explaining to the user why those permissions are needed:

  • NSMicrophoneUsageDescription
  • NSPhotoLibraryUsageDescription

If your app doesn’t already access the microphone or photo library, we recommend using a usage description like:

  • "<app name> needs access to the microphone to be able to attach voice notes."
  • "<app name> needs access to your photo library for you to be able to attach images."

The permission alert for accessing the microphone/photo library will NOT appear unless users attempt to attach a voice note/photo while using Instabug.

Documentation

For more details about the supported APIs and how to use them, you can check our Documentation.

Contact US

If you have any questions or feedback don't hesitate to get in touch. You can reach us at any time through support@instabug.com.

License

This software is released under MIT License.

© 2017 Instabug. All rights reserved.

Package Sidebar

Install

npm i @envoy/instabug-reactnative

Weekly Downloads

1

Version

2.8.3

License

MIT

Unpacked Size

38.2 MB

Total Files

102

Last publish

Collaborators

  • envoy-npm