outsystems-plugin-sentry
v1.3.0
Published
OutSystems fork of sentry-cordova 1.7.2.
Maintainers
Readme
This release deactivate all options coming from process.env.variables (such as SENTRY_SKIP_AUTO_RELEASE) because OutSystems cannot modify them at install. Based on sentry-cordova 1.7.2
This is a beta release
Usage
Cordova in index.html onDeviceReady function:
onDeviceReady: function() {
...
var Sentry = cordova.require("sentry-cordova.Sentry");
Sentry.init({ dsn: '___PUBLIC_DSN___' });
...
}Ionic in your app.module.ts:
...
import * as Sentry from 'sentry-cordova';
...
Sentry.init({ dsn: '___PUBLIC_DSN___' });