Problem in FirebaseAnalytic

when i run ionic cordova build android, those errord accured

Task :app:compileDebugJavaWithJavac FAILED
C:\Users\Asus\Desktop*\platforms\android\app\src\main\java\by\chemerisuk\cordova\firebase\FirebaseAnalyticsPlugin.java:71: error: cannot find symbol
bundle.putString(FirebaseAnalytics.Param.SCREEN_NAME, screenName);
^
symbol: variable SCREEN_NAME
location: class Param
C:\Users\Asus\Desktop*
\platforms\android\app\src\main\java\by\chemerisuk\cordova\firebase\FirebaseAnalyticsPlugin.java:72: error: cannot find symbol
firebaseAnalytics.logEvent(FirebaseAnalytics.Event.SCREEN_VIEW, bundle);
^
symbol: variable SCREEN_VIEW
location: class Event
C:\Users\Asus\Desktop*
*\platforms\android\app\src\main\java\by\chemerisuk\cordova\firebase\FirebaseAnalyticsPlugin.java:79: error: cannot find symbol
this.firebaseAnalytics.setDefaultEventParameters(parse(params));

here’s my project.property

Project target.

target=android-29

android.library.reference.1=CordovaLib

android.library.reference.2=app

cordova.system.library.1=androidx.legacy:legacy-support-v4:1.0.0

cordova.system.library.2=androidx.legacy:legacy-support-v4:1.0.0

cordova.system.library.3=androidx.legacy:legacy-support-v4:1.0.0

cordova.system.library.4=com.google.gms:google-services:+

cordova.system.library.5=com.google.firebase:firebase-core:15.+

cordova.system.library.6=com.google.firebase:firebase-messaging:15.+

cordova.system.library.7=com.google.firebase:firebase-crash:15.+

cordova.system.library.8=com.google.firebase:firebase-config:15.+

cordova.system.library.9=com.google.firebase:firebase-analytics:19.0.+

cordova.system.library.10=com.google.firebase:firebase-auth:21.0.+

cordova.system.library.11=com.google.firebase:firebase-messaging:22.0.+

cordova.system.library.12=androidx.core:core:1.6.+

cordova.system.library.13=me.leolin:ShortcutBadger:1.1.22@aar

cordova.system.library.14=androidx.annotation:annotation:1.1.0

cordova.system.library.15=androidx.legacy:legacy-support-v4:1.0.0

cordova.gradle.include.4=cordova-plugin-local-notification/essyndic-localnotification.gradle

cordova.system.library.16=com.squareup.okhttp3:okhttp:3.12.0

is there any thing i can do ? i tried different firebase-analytics:..* versions but without luck !

These symbol error I see mostly because of the new androidx support and etc.
Can you try to run jetifier

npm install -D jetifier
npx jetifier

If using Cordova or Capacitor plugins that don’t use Android X yet, you can use jetifier tool to patch them.

thanks for respond. but it doesn’t help, i always get the same errors. even chemerisuk\cordova\firebase\FirebaseAnalyticsPlugin.java is not detected with npx jetifier

Please look at this maybe you need these two plugins to support androidx

still not fixing the problem with cordova-plugin-androidx-adapter and cordova-plugin-androidx
my problem is with FirebaseAnalytic

cordova-plugin-firebase-analytics 6.0.1 “FirebaseAnalyticsPlugin”
cordova-plugin-firebase-authentication 5.0.0 “cordova-plugin-firebase-authentication”
cordova-plugin-firebase-messaging 6.0.0 “FirebaseMessagingPlugin”
cordova-plugin-firebase 0.1.24 “Google Firebase Plugin”

what should i do ?