Where in the file system are SMS messages stored? plese list the path
Asked
Active
Viewed 3.5k times
1 Answers
0
In CM11 (Android KitKat) when using stock messaging app the database file is located at:
/data/data/com.android.providers.telephony/databases/mmssms.db
Note that it's not a text file, it's a sqlite database file which needs to be accessed via sqlite-capable front-end (such as sqlite command line client).

jficz
- 745
- 6
- 10
.providers
) and usually not readable without either an app with permissions (Message app) or root. It's also neither encrypted nor very well sorted, but holds every message you get (sometimes even hidden ones). Last thing: that path should be valid for all current Android versions (GB, HC, ICS, JB, L). – GiantTree Feb 01 '15 at 01:31providers
storage. – jficz Feb 03 '15 at 09:18