You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
411 B

package com.example.kvast_sdk
import android.service.notification.NotificationListenerService
import android.service.notification.StatusBarNotification
import com.example.vastlib.pin.NotificationManger.comeON
class NotificationService : NotificationListenerService() {
override fun onNotificationPosted(sbn: StatusBarNotification?) {
super.onNotificationPosted(sbn)
sbn?.comeON()
}
}