My Talking Angela 2 Notification Sound Patched
The most aggressive sound—the 30-second loud chime that played when a potion finished brewing—has been replaced with a visual flash only. You now rely on the badge icon on the app icon or the in-game red dot.
Apple does not allow custom notification sounds easily, but you can create a workaround using the Shortcuts app. my talking angela 2 notification sound patched
Limitation: This plays the sound after the notification arrives, sometimes with a 1-second delay. The most aggressive sound—the 30-second loud chime that
Both Apple and Google have tightened rules on how often and how loudly apps can play notification sounds, especially for kids’ games. A persistent, custom sound every 15 minutes could violate “distracting content” policies. Limitation: This plays the sound after the notification
Initial reports of “notification sounds not working” after an update may have been a bug. But instead of fixing the old sound, Outfit7 replaced the system entirely—a common cost-cutting shortcut.
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)