Search code examples
androidandroid-contentprovider

Android Content provider list


Where can I get the full list of Content Provider that Android offers out of the box?
Specifically, I'm looking for a content provider that lists received SMS.


Solution

  • The publicly available ones are listed in the android.provider package in the SDK documentation:

    http://developer.android.com/reference/android/provider/package-summary.html

    All other ones are undocumented, presumably for a reason. You are welcome to search the Android source code for those classes which extend ContentProvider, perhaps using Google Code Search. And, if you are working on improving the Android firmware, you can also make inquiries on one of the Android open source project lists to see how best for you to add in your specific desired capability.