mirror of
https://github.com/oxen-io/session-android.git
synced 2024-11-23 18:15:22 +00:00
Upgrade notification KeyCachingService code to NotificationCompat.Builder
This commit is contained in:
parent
1c8f8666ba
commit
4826dbcc34
@ -189,7 +189,7 @@ public class KeyCachingService extends Service {
|
||||
}
|
||||
|
||||
private void foregroundServiceModern() {
|
||||
Notification notification = new Notification(R.drawable.icon_cached, null, System.currentTimeMillis());
|
||||
NotificationCompat.Builder builder = new NotificationCompat.Builder(this);
|
||||
RemoteViews remoteViews = new RemoteViews(getPackageName(), R.layout.key_caching_notification);
|
||||
|
||||
Intent intent = new Intent(this, KeyCachingService.class);
|
||||
@ -197,10 +197,11 @@ public class KeyCachingService extends Service {
|
||||
PendingIntent pendingIntent = PendingIntent.getService(getApplicationContext(), 0, intent, 0);
|
||||
remoteViews.setOnClickPendingIntent(R.id.lock_cache_icon, pendingIntent);
|
||||
|
||||
notification.contentView = remoteViews;
|
||||
builder.setSmallIcon(R.drawable.icon_cached);
|
||||
builder.setContent(remoteViews);
|
||||
|
||||
stopForeground(true);
|
||||
startForeground(SERVICE_RUNNING_ID, notification);
|
||||
startForeground(SERVICE_RUNNING_ID, builder.build());
|
||||
}
|
||||
|
||||
private void foregroundServiceLegacy() {
|
||||
|
Loading…
Reference in New Issue
Block a user