Bro, make a public open class MyFirebaseMessagingService. I want to inherit it so that when the app is unloaded, I can still receive messages, store them locally, and then see them all when I open it. I can't create my own class because of the "internal" dependencies.
<service
android:name="com.mmk.kmpnotifier.firebase.MyFirebaseMessagingService"
tools:node="remove" />
<service
android:name="com.example.firebase.MYNEWFirebaseMessagingService"
android:exported="false"
android:label="@string/title_messaging_service">
<intent-filter>
<action android:name="com.google.firebase.MESSAGING_EVENT" />
</intent-filter>
</service>
Bro, make a public open class MyFirebaseMessagingService. I want to inherit it so that when the app is unloaded, I can still receive messages, store them locally, and then see them all when I open it. I can't create my own class because of the "internal" dependencies.