Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

@shakebugs/react-native-shake

Package Overview
Dependencies
Maintainers
1
Versions
28
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@shakebugs/react-native-shake

Shake SDK wrapper

Source
npmnpm
Version
16.2.1
Version published
Weekly downloads
3.9K
-38.8%
Maintainers
1
Weekly downloads
 
Created
Source

Shake React Native SDK

npm version

React Native plugin for bug reporting.

Features

FeatureAvailable
Bug reporting
Crash reporting
Users

Requirements

PlatformVersion
React Native0.56
Android5.0
iOS12.0

How to use

Install Shake

Execute the npm install command in your terminal:

npm install @shakebugs/react-native-shake

Install pods from the project root directory:

cd ios && pod install && cd ..

Start Shake

Call Shake.start() method in the index.js file.

import {AppRegistry} from 'react-native';
import App from './src/App';
import {name as appName} from './app.json';
import Shake from '@shakebugs/react-native-shake';

AppRegistry.registerComponent(appName, () => App);

Shake.start('client-id', 'client-secret');

Replace client-id and client-secret with the actual values you have in your workspace settings.

Troubleshooting

If you get the following error during the build time:

Execution failed for task ':app:mergeDexDebug'.

You should set multiDexEnabled flag in app-level build.gradle like below:

defaultConfig {
    applicationId "com.shakebugs.react.example"
    minSdkVersion rootProject.ext.minSdkVersion
    targetSdkVersion rootProject.ext.targetSdkVersion
    versionCode 1
    versionName "1.0.0"
    multiDexEnabled true
}

Resources

  • Official docs

Keywords

shakebugs

FAQs

Package last updated on 12 Dec 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts