mparticle
#
Ionic mParticle Integration for CapacitorThe mParticle plugin provides easy integration with the mParticle SDK in your Capacitor app.
#
Installation#
ConfigurationIn capacitor.config.json
add your keys, secrets, environment
, logLevel
and bridgeName
.
environment
is optional, if not provided mParticle will auto detect it. Possible values are "development"
and "production"
.
logLevel
is optional. It allows to configure mParticke SDK log level. If not provided, mParticle won't show any logs. Possible values are "debug"
, "error"
, "verbose"
and "warning"
.
bridgeName
is optional. If set, it has to match the requiredWebviewBridgeName
on the mParticle SDK initialization.
In the javascript mParticle initialization code add useNativeSdk: true
and requiredWebviewBridgeName
with a value that matches bridgeName
on the plugin preferences.
#
Register plugin for AndroidIn the init
method of MainActivity.java
add:
#
Register plugin for iOSPlugin is auto-registered on iOS.