0.0.2 • Published 6 years ago

cordova-app-crash v0.0.2

Weekly downloads
58
License
MIT
Repository
github
Last release
6 years ago

cordova-app-crash

Crash your app on demand. Created for crash testing. Crashlytics provide the API for native apps but as of now (15th Oct 2018), there's no such cordova plugin to support this.

Installation

$ cordova plugin add cordova-app-crash

Usage

cordova.plugins.AppCrash.crash(
    "crash",
    (successResp) => {
        console.log(successResp);
    }, (error) => {
        console.log(error);
    }
);

Collaborators