use of me.devsaki.hentoid.util.notification.ServiceNotificationManager in project Hentoid by avluis.
the class API29MigrationService method onCreate.
@Override
public void onCreate() {
super.onCreate();
notificationManager = new ServiceNotificationManager(this, NOTIFICATION_ID);
notificationManager.cancel();
notificationManager.startForeground(new ImportStartNotification());
Timber.w("Service created");
}
use of me.devsaki.hentoid.util.notification.ServiceNotificationManager in project Hentoid by avluis.
the class UpdateCheckService method onCreate.
@Override
public void onCreate() {
notificationManager = new ServiceNotificationManager(this, NOTIFICATION_ID);
notificationManager.startForeground(new UpdateCheckNotification());
Timber.w("Service created");
}
Aggregations