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
  • 37,241
  • 25
  • 195
  • 267
Mustafa
  • 10,013
  • 10
  • 70
  • 116

1 Answers1

0

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

dsandler
  • 2,471
  • 17
  • 11