This adds an explicit dependency on androidx.localbroadcastmanager, which seems to be required after upgrading to Cordova Android 13.0.0, which will shortly be a requirement for Google Play submissions when the minimum target SDK version becomes 34 (Android 14). These were the compile errors we see in our project after upgrading to Cordova Android 13.0.0:
Simply adding the explicit dependency in my local node_modules/cordova-plugin-firebase-messaging/plugin.xml and rebuilding the Cordova project fixed the error.
This adds an explicit dependency on
androidx.localbroadcastmanager
, which seems to be required after upgrading to Cordova Android 13.0.0, which will shortly be a requirement for Google Play submissions when the minimum target SDK version becomes 34 (Android 14). These were the compile errors we see in our project after upgrading to Cordova Android 13.0.0:Simply adding the explicit dependency in my local
node_modules/cordova-plugin-firebase-messaging/plugin.xml
and rebuilding the Cordova project fixed the error.