feat(notifications): add branded monochrome icon and color to all notifications
Build & Deploy PluriWave / Análisis de código (push) Successful in 36s
Build & Deploy PluriWave / Build APK + AAB release (push) Successful in 2m28s

Replace generic system icons (info bubble, stock alarm clock) with a
custom equalizer-bars vector drawable across all 4 notification
builders: pre-notice, snooze countdown, ringing alarm, and the audio
player. Apply the app's cyan brand color to the 3 alarm notifications
that previously had none. Audio notification now explicitly declares
its icon instead of falling back to the full-color launcher icon,
which Android was auto-silhouetting into an illegible status-bar
blob.
This commit is contained in:
2026-07-02 18:53:33 +02:00
parent c78af4b1e8
commit 8f2bf2bdd6
7 changed files with 39 additions and 3 deletions
+11
View File
@@ -13,4 +13,15 @@ void main() {
isNot(const Color(0xFF6750A4)),
);
});
test('AudioServiceConfig usa el icono monocromo de marca', () {
expect(
configuracionAudioService.androidNotificationIcon,
'drawable/ic_stat_pluriwave',
);
expect(
configuracionAudioService.androidNotificationIcon,
isNot('mipmap/ic_launcher'),
);
});
}