user3103155
user3103155

Reputation: 75

Android SQLite database made accessible to multiple applications

I am looking to developing and Android App store for academic purposes. I was wondering if it was possible for the SQLite database of my main application to be made accessible to the applications (dummy applications) originating from my App store. Is it also possible to have concurrent access to an SQLite database on Android.

Alternatively is it possible for the data to be stored as a file on the device and be accessible to multiple applications.

Upvotes: 0

Views: 277

Answers (2)

thelawnmowerman
thelawnmowerman

Reputation: 12136

You are looking for Content Providers.

Upvotes: 1

Waqar Ahmed
Waqar Ahmed

Reputation: 5068

you may create database in your sd card from where other application can also access that database.

Upvotes: 0

Related Questions