Skip to content

Commit

Permalink
feat/notification icon (#50)
Browse files Browse the repository at this point in the history
* possible

* chore: spotless

* chore: versions
  • Loading branch information
seamuslowry authored Feb 3, 2024
1 parent 4e06bd8 commit 0f2fad6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ android {
applicationId "seamuslowry.daytracker"
minSdk 33
targetSdk 34
versionCode 18
versionName "0.24.0"
versionCode 19
versionName "0.24.1"

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
vectorDrawables {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ class EntryReminderWorker @AssistedInject constructor(

// Create the notification
val builder = NotificationCompat.Builder(applicationContext, NOTIFICATION_CHANNEL)
.setSmallIcon(R.drawable.ic_launcher_foreground)
.setSmallIcon(android.R.drawable.ic_popup_reminder)
.setContentTitle(context.getString(R.string.reminder_notification_title))
.setContentText(context.getString(R.string.reminder_notification_desc))
.setPriority(NotificationCompat.PRIORITY_DEFAULT)
Expand Down

0 comments on commit 0f2fad6

Please sign in to comment.