Код: Выделить всё
@CapacitorPlugin(name = "NotificationPlugin")
class NotificationServiceExtension : Plugin(),INotificationServiceExtension {
@PluginMethod
override fun onNotificationReceived(event: INotificationReceivedEvent) {
// event.preventDefault()
val notification: IDisplayableMutableNotification = event.notification
Log.e("onNotificationReceived: ",notification.title.toString())
val data = JSObject()
data.put("title", notification.title)
notifyListeners("notificationReceived", data)
}
}
Подробнее здесь: https://stackoverflow.com/questions/791 ... d-native-p