Srinivas4iPhone
Srinivas4iPhone

Reputation: 3

Can any body access the database files stored in application's data folder in android?

I am using the SQLite database to store data in my application. Can the databases I created for use in my application be accessed by others or any outside application?

Upvotes: 0

Views: 137

Answers (1)

Hans Hohenfeld
Hans Hohenfeld

Reputation: 1739

No. The databse file is stored in /data/data/yourpackage.yourapp/database. On a non rooted phone, you don't even have file system access there. Other Applications can not access this file as well, for very good security reasons.

If you want to share data with other applications or want to consume data from other applications, check

http://developer.android.com/guide/topics/providers/content-providers.html

Upvotes: 1

Related Questions