You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Plugin is failing in AndroidX version, Please apply the below fix.
Plugin Name: "cordova-plugin-fcm"
Correction 1: In FCMPluginActivity.java:
Old : import android.support.v4.content.LocalBroadcastManager;
Need to be replaced with : import androidx.localbroadcastmanager.content.LocalBroadcastManager;
Correction 2: In MyFirebaseMessagingService.java:
Old : import android.support.v4.app.NotificationCompat;
Need to be replaced with : import androidx.core.app.NotificationCompat;
Hi Extert,
Plugin is failing in AndroidX version, Please apply the below fix.
Plugin Name: "cordova-plugin-fcm"
Correction 1: In FCMPluginActivity.java:
Old : import android.support.v4.content.LocalBroadcastManager;
Need to be replaced with : import androidx.localbroadcastmanager.content.LocalBroadcastManager;
Correction 2: In MyFirebaseMessagingService.java:
Old : import android.support.v4.app.NotificationCompat;
Need to be replaced with : import androidx.core.app.NotificationCompat;
Thanks,
Jithin
The text was updated successfully, but these errors were encountered: