I’m using the @capawesome-team/capacitor-firebase plugin with Capacitor 4.
Recently, my builds started crashing; after some debugging, I traced the problem to an outdated use of com.google.firebase:perf-plugin:1.4.0' in
build.gradle`.
When I updated the version to 1.4.1
, the build started working again. I found the correct version by checking the Firebase SDK version list, but surely there is a better way to do this than to manually check a website before each build to ensure the versions are correct.
So my question is how can I check for outdated plugins in build.gradle
? (This may be more of a general Android question, but I’m using Capacitor for iOS/Android/PWA and I don’t really know much about Android, so I’m hoping there’s some way to use a general tool (like Capacitor CLI?) to check for outdated dependencies.)