0

I know it is currently not possible to read messages via standart APIs. Is it possible to somehow read them with root access? Where are they stored? I have tried to locate the relevant places by browsing the source but no luck: NotificationLogActivity.java and NotificationManager. I thought it might be in some SQLite db, but could not find any relevant system app database.

Where should I look into to find where the notifications are stored? I am currently cloning the Android source repo but not sure I will be able to find it.

Cœur
  • 34,719
  • 24
  • 185
  • 251
Mustafa
  • 9,441
  • 8
  • 66
  • 116

1 Answers1

0

You simply can't do this. They are stored in memory only, inside the NotificationManagerService, StatusBarManagerService, and SystemUI.

dsandler
  • 2,461
  • 17
  • 11