I am currently using firebase-messaging 9.4.0 and an error occurs while creating the application and I received an error message
Error:(18, 8) error: zzae(Intent) in FirebaseMessagingService cannot override zzae(Intent) in zzb attempting to assign weaker access privileges; was protected
So, I checked the compiled FirebaseMessagingService, which was a subclass of com.google.firebase.iid.zzb , and had the zzae (Intent) method as private, but its subclass of FirebaseMessagingService had secure access. I know that subclasses cannot have a weaker link than their superclass, so I think something is wrong with the FirebaseMessagingService library.
source share