Crashlytics plugin for PhoneGap

0
I'm trying to implement the cordova-plugin-firebase-crashlytics in a hybrid app and have these lines in my config.xml: <plugin name="cordova-support-google-services" /> <plugin name="cordova-plugin-firebase-crashlytics">    <param name="ANDROID_FIREBASE_CORE_VERSION" value="16.0.0" /> </plugin> <resource-file src="google-services.json" target="app/google-services.json" />  My entry ,js has this bit of JavaScript: MxApp.onClientReady(function(mx) { var crashlytics = FirebaseCrashlytics.initialise(); crashlytics.logException("my caught exception"); }); However, I'm getting the following error: ReferenceError: FirebaseCrashlytics is not defined Has anybody succesfully implemented this plugin? Or any suggestions on how to get it to work?
asked
0 answers