Reputation: 16441
If we want to share our data with other Android applications,
(1) we may create a SQlite database and make it accessible by other applications or
(2) create a ContentProvider.
What are the basic differences in the above mentioned two approaches?
Upvotes: 0
Views: 167
Reputation: 13541
ContentProvider is exposing data to other application, a non-content provider database is only accessible by that application.
Upvotes: 1