My Talking Angela 2 — Notification Sound Patched (Write-up)
To understand why this patch is so significant, you first have to understand the original sin. Unlike most mobile games that mute themselves when you turn down the media volume or enable "Do Not Disturb" mode, My Talking Angela 2 used a specific audio channel for its daily reminders.
Players reported that even if their phone was on silent, Angela would still blast a loud, cheerful notification sound whenever: my talking angela 2 notification sound patched
The most infuriating aspect was the "Walkover" bug. If you minimized the game to check a text message, Angela would send a system-level notification. Tapping that notification reopened the game, but the accompanying sound would play over your current media—loudly interrupting podcasts, Zoom calls, or quiet sleep timers.
Forum posts on Reddit and the Outfit7 support page described it as "audio terrorism" and "the reason I uninstalled." The bug was so persistent that tech blogs listed My Talking Angela 2 as a prime example of "bad audio hygiene" in mobile development. Title My Talking Angela 2 — Notification Sound
Custom notification sounds require the app to wake up briefly in the background. By swapping to system sounds, the game reduces background activity—saving your battery life.
Android (Kotlin):
val soundUri = Uri.parse("android.resource://$context.packageName/$R.raw.alert_sound")
val channel = NotificationChannel(CHANNEL_ID, "Alerts", NotificationManager.IMPORTANCE_DEFAULT).apply
setSound(soundUri, AudioAttributes.Builder().setUsage(AudioAttributes.USAGE_NOTIFICATION).build())
notificationManager.createNotificationChannel(channel)
iOS (Swift):
let soundName = UNNotificationSoundName("alert_sound.caf")
let content = UNMutableNotificationContent()
content.sound = UNNotificationSound(named: soundName)
Previously, Angela’s notifications used the "Ringtone" audio stream. Now, they have been migrated to the "Media" stream. This means if your physical mute switch is on, or if your phone is in Vibrate Only mode, the cat is completely silent. A mini-game had finished cooling down
For millions of casual mobile gamers, the sound of a purring cat or a soft chime usually signals a happy moment in My Talking Angela 2. However, for the past several months, that same chime has been the source of a growing frustration. That frustration centered on an aggressive, often intrusive notification sound issue that refused to obey standard phone settings.
Now, following the latest update (version 1.8 or higher, depending on your region), developer Outfit7 has officially rolled out a patch specifically addressing the "Notification Sound Override" bug. Here is everything you need to know about what changed, why it took so long, and how the game feels different now.