Official Sentry SDK for Cordova (Ionic, ...)
This is a beta release
Usage
index.html
onDeviceReady
function:
Cordova in onDeviceReady: function() {
...
var Sentry = cordova.require("sentry-cordova.Sentry");
Sentry.init({ dsn: '___PUBLIC_DSN___' });
...
}
app.module.ts
:
Ionic in you ...
import * as Sentry from 'sentry-cordova';
...
Sentry.init({ dsn: '___PUBLIC_DSN___' });