Join our webinar on Wednesday, June 26, at 1pm EDTHow Chia Mitigates Risk in the Crypto Industry.Register
Socket
Socket
Sign inDemoInstall

instabug-cordova

Package Overview
Dependencies
0
Maintainers
5
Versions
62
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    instabug-cordova

Cordova plugin for integrating the Instabug SDK.


Version published
Weekly downloads
231
decreased by-16%
Maintainers
5
Created
Weekly downloads
 

Changelog

Source

11.7.0 (2023-02-02)

  • Bumps Instabug Android SDK to v11.8.0
  • Bumps Instabug iOS SDK to v11.7.0
  • Adds new APIs:
    1. BugReporting.setDisclaimerText
    2. BugReporting.setCommentMinimumCharacterCount
  • Adds support for more locales:
    1. Czech
    2. Finnish
    3. Hungarian
    4. Indonesian (iOS)
    5. Norwegian
    6. PortuguesePortugal
    7. Romanian
    8. Slovak
  • Adds new string keys:
    1. insufficientContentMessage
    2. insufficientContentTitle (iOS)
    3. screenRecording
  • Adds missing mapping for the below string keys on Android:
    1. audio
    2. image
    3. messagesNotificationAndOthers
    4. okButtonTitle

Readme

Source

Instabug Cordova Plugin

The purpose of this plugin is to simplify the process of integrating the Instabug SDK in a hybrid application, as well as to provide an interface to interact with the SDK through JavaScript.

Instabug is a bug reporting and in-app feedback tool that provides your testers and users with easy “shake to send” feedback from within the app, to report bugs and issues easily. You’ll get attached screenshots, screen recordings, annotations, network logs to help you take insightful decisions. You’ll also receive all the device details, environment snapshots and bug reproduction steps so that you can fix bugs and iterate faster.

For more info, visit Instabug.com.

Installation

Cordova:

cordova plugin add instabug-cordova

Ionic:

ionic cordova plugin add instabug-cordova

Integration Steps

  • Add the following snippet to your index.js file inside onDeviceReady function:
var Instabug = cordova.require('instabug-cordova.Instabug');
var BugReporting = cordova.require('instabug-cordova.BugReporting');

Instabug.start(
    'YOUR_CORDOVA_TOKEN',
    [BugReporting.invocationEvents.button],
    function () {
        console.log('Instabug initialized.');
    },
    function (error) {
        console.log('Instabug could not be initialized - ' + error);
    }
);
  • Replace YOUR_CORDOVA_TOKEN with your application token.

:warning: If you're updating the SDK from versions prior to v11, please check our migration guide.

Features Not Yet Supported

  • User steps.
  • Repro steps.
  • Network logging.
  • View hierarchy.
  • Crash reporting.
  • Push notification for in-app messaging.

License

This software is released under the Apache 2.0 License.

© 2022 Instabug. All rights reserved.

Keywords

FAQs

Last updated on 02 Feb 2023

Did you know?

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc