Hi all,
My app use Vue with Cordova, and with every page changes i call the setScreenName method:
window.FirebasePlugin.setScreenName("PAGE_NAME");
But in Firebase Analytics i recieve this:

According with firebase (https://firebase.google.com/docs/analytics/screenviews?hl=es), i need to pass second param to specify the className. In PWA app it's always MainActivity or MainViewController
Analytics.setScreenName(screenName, screenClass: screenClass)
Why can set my custom Screen Name?
same problem: it's not possibile see any screen name passed even the lodgement parameters, what's wrong?
This plugin provides the facility to set the "screen name" parameter on the "screen_view" event ("screen class" is not set as it's not relevant in the Javascript context of a Cordova app so defaults to the native class name).
You can see how this is done in the plugin source code for Android and iOS.
These native implementations are called by the setScreenName() JS plugin API function.
The example project contains an example usage and the resulting output can be seen in the Firebase Analytics console:

Most helpful comment
This plugin provides the facility to set the "screen name" parameter on the "screen_view" event ("screen class" is not set as it's not relevant in the Javascript context of a Cordova app so defaults to the native class name).
You can see how this is done in the plugin source code for Android and iOS.
These native implementations are called by the
setScreenName()JS plugin API function.The example project contains an example usage and the resulting output can be seen in the Firebase Analytics console: