Update brand logo.

This commit is contained in:
Michelle Tang
2024-11-06 10:31:19 -05:00
committed by Greyson Parrelli
parent 743e2aaa82
commit c85a28af92
66 changed files with 2737 additions and 649 deletions

View File

@@ -48,7 +48,7 @@ object ApkUpdateNotifications {
.setContentTitle(context.getString(R.string.ApkUpdateNotifications_prompt_install_title))
.setContentText(context.getString(R.string.ApkUpdateNotifications_prompt_install_body))
.setSmallIcon(R.drawable.ic_notification)
.setColor(ContextCompat.getColor(context, R.color.core_ultramarine))
.setColor(ContextCompat.getColor(context, R.color.notification_background_ultramarine))
.setContentIntent(pendingIntent)
.build()
@@ -75,7 +75,7 @@ object ApkUpdateNotifications {
.setContentTitle(context.getString(R.string.ApkUpdateNotifications_failed_general_title))
.setContentText(context.getString(R.string.ApkUpdateNotifications_failed_general_body))
.setSmallIcon(R.drawable.ic_notification)
.setColor(ContextCompat.getColor(context, R.color.core_ultramarine))
.setColor(ContextCompat.getColor(context, R.color.notification_background_ultramarine))
.setContentIntent(pendingIntent)
.setAutoCancel(true)
.build()
@@ -103,7 +103,7 @@ object ApkUpdateNotifications {
.setContentTitle(context.getString(R.string.ApkUpdateNotifications_auto_update_success_title))
.setContentText(body)
.setSmallIcon(R.drawable.ic_notification)
.setColor(ContextCompat.getColor(context, R.color.core_ultramarine))
.setColor(ContextCompat.getColor(context, R.color.notification_background_ultramarine))
.setContentIntent(pendingIntent)
.setAutoCancel(true)
.build()