user3398090
user3398090

Reputation: 1

Sqlite db in android on eclipse

My android app is creating and using a sqlite db and I wanted to know if the db is the same in evry device that runs the app? I mean , if someone inserted somthing to the db by using my app , does it apply to all other devices? or does it create the db in evry device and thus it apply changes only in that particular device..? I forgot to mention that I am not using a server

Upvotes: 0

Views: 33

Answers (1)

GhostDerfel
GhostDerfel

Reputation: 1551

Just for that device, if you want to update every users device you will need to build some communication with your server.

Upvotes: 1

Related Questions