I'm creating a backup utility for Android and I need to read content of inbox, outbox and dratfs. How can I accomplish that on SDK v1.5?
There is a content provider for accessing SMS messages, but it's not documented in the public SDK. If you use ContentResolver.query() with a Uri of content://sms you should be able to access these messages.
ContentResolver.query()
Uri
content://sms
You can find more information on this Google Groups thread or previous questions on stackoverflow.
2.1m questions
2.1m answers
60 comments
57.0k users