fix(notify): use ActivityWatch logo as notification small icon - #227
Open
0xbrayo wants to merge 1 commit into
Open
fix(notify): use ActivityWatch logo as notification small icon#2270xbrayo wants to merge 1 commit into
0xbrayo wants to merge 1 commit into
Conversation
Greptile SummaryThe PR replaces adaptive launcher icons with dedicated notification-status icons for the foreground service and activity-time alerts.
Confidence Score: 5/5The PR appears safe to merge with no actionable defects identified. The new drawable is available to all build variants, covers every standard density, uses valid density-appropriate PNG dimensions, and is a supported small-icon resource throughout the app's API range. Important Files Changed
Reviews (1): Last reviewed commit: "fix(notify): use ActivityWatch logo as n..." | Re-trigger Greptile |
0xbrayo
force-pushed
the
fix/notification-icon
branch
from
August 14, 2026 21:19
97745f3 to
cb9bb56
Compare
The foreground-service and time-alert notifications used the adaptive launcher mipmap as setSmallIcon(). Android status-bar icons are alpha-only, so that rendered as a white blob or the default robot.
0xbrayo
force-pushed
the
fix/notification-icon
branch
from
August 14, 2026 21:31
cb9bb56 to
a5751af
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Problem
The foreground-service notification (
BackgroundService) and activity-time alerts (NotifyWorker) usedR.mipmap.aw_launcher_roundassetSmallIcon().On API 26+ that resource is an adaptive-icon XML. Status-bar icons are alpha-only, so Android rendered a white blob or fell back to the default robot — not the ActivityWatch logo.
Fix
Add a white-on-transparent
ic_stat_notificationdrawable (official AW clock / A / W mark, all densities) and use it as the small icon in both notification builders.Change
Closes #226