Also we would like to know, if we install the application which has SQLite
DBs using the .apk file, where is the Database saved in an Android Device.

the sqlite database will be stored in the application directory. the user
can delete this if he goes to settings and "clear data".
then it will be a problem in ur case since u generating ui from the
database.

you can find your created database, named *<your-database-name>
location ;  //data/data/<Your-Application-Package-Name>/databases/<
your-database-name>*

two options r there

restrict user from deleting application data using android:
manageSpaceActivity<http://developer.android.com/guide/topics/manifest/application-element.html#space>
="*string*", which is not a good solution
second check for the database every time whn user log in. if not download
it and populate the ui

regards
jovish


On Thu, Nov 29, 2012 at 3:46 PM, Ibrahim Sada <[email protected]>wrote:

> Also we would like to know, if we install the application which has SQLite
> DBs using the .apk file, where is the Database saved in an Android Device.

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to