Trust: setBlockableSystem() has been renamed to setBlockable()

Change-Id: I62a560971c1be2fb1f26d58c75c0761f5db98278
This commit is contained in:
LuK1337
2020-09-15 10:15:18 +02:00
parent 31ed872726
commit bede8e54bd

View File

@@ -245,7 +245,7 @@ public class TrustInterfaceService extends LineageSystemService {
int importance = NotificationManager.IMPORTANCE_HIGH;
NotificationChannel trustChannel = new NotificationChannel(CHANNEL_NAME,
name, importance);
trustChannel.setBlockableSystem(true);
trustChannel.setBlockable(true);
mNotificationManager.createNotificationChannel(trustChannel);
}