Use Aegis icon as lock status notification icon

This commit is contained in:
Alexander Bakker 2022-02-18 12:53:29 +01:00
parent 0f3e5c537c
commit b8066c1925
2 changed files with 13 additions and 1 deletions

View file

@ -35,7 +35,7 @@ public class NotificationService extends Service {
Intent intentAction = new Intent(CODE_LOCK_VAULT_ACTION);
PendingIntent lockDatabaseIntent = PendingIntent.getBroadcast(this, 1, intentAction, flags);
NotificationCompat.Builder builder = new NotificationCompat.Builder(this, CODE_LOCK_STATUS_ID)
.setSmallIcon(R.drawable.ic_fingerprint_black_24dp)
.setSmallIcon(R.drawable.ic_aegis_notification)
.setContentTitle(getString(R.string.app_name_full))
.setContentText(getString(R.string.vault_unlocked_state))
.setPriority(NotificationCompat.PRIORITY_DEFAULT)