[android-developers] Re: How to share data among different devices

2011-03-14 Thread ez
Thanks for replying. Google should come up with an easy solution. Tablet will flood the market this year. Users want to use the apps with the same setting and preferences among the their phone and tablets. Thanks Eric On Mar 13, 10:55 am, Mark Murphy mmur...@commonsware.com wrote: On Sun, Mar

[android-developers] Re: How to share data among different devices

2011-03-14 Thread Riyad
Given that there is no official Android data storage/sync API that you were hoping for, I bet you could be clever about using Google Docs API to do something suitable to get out the door fast: http://code.google.com/apis/documents/ I don't recommend this for a large scale deployment, but if you

[android-developers] Re: How to share data among different devices

2011-03-14 Thread Riyad
An addendum to my suggestion (in case you are thinking about it) If your app really is that low-volume, just use a service like AWS SimpleDB with the Android SDK http://aws.amazon.com/simpledb/#pricing http://aws.amazon.com/sdkforandroid/ and if you really are in that low-usage tier that would

Re: [android-developers] Re: How to share data among different devices

2011-03-13 Thread Mark Murphy
On Sun, Mar 13, 2011 at 11:41 AM, ez qzh...@gmail.com wrote: I am looking for out of box solution from Google. There is none. The closest thing is BackupEngine, but that is not a sync solution. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy

[android-developers] Re: How to share data among different devices

2011-03-13 Thread ez
I am looking for out of box solution from Google. Anyone knows if any of Google services can do this without setting up my own web application. Thanks On Mar 10, 11:27 am, Greg Donald gdon...@gmail.com wrote: On Thu, Mar 10, 2011 at 11:11 AM, ez qzh...@gmail.com wrote: We don't have a remote

[android-developers] Re: How to share data among different devices

2011-03-10 Thread ez
Thanks for replying. We don't have a remote server and are looking for Google Cloud solution. Any ideas? Thanks On Mar 9, 11:52 pm, Stephan Wiesner testexpe...@googlemail.com wrote: Well, you can always implement a sync service on a remote server. Using JSON objects this is surprisingly

Re: [android-developers] Re: How to share data among different devices

2011-03-10 Thread Greg Donald
On Thu, Mar 10, 2011 at 11:11 AM, ez qzh...@gmail.com wrote: We don't have a remote server and are looking for Google Cloud solution. Any ideas? Do you just not know the URL? http://code.google.com/appengine/ -- Greg Donald destiney.com | gregdonald.com -- You received this message

[android-developers] Re: How to share data among different devices

2011-03-09 Thread Stephan Wiesner
Well, you can always implement a sync service on a remote server. Using JSON objects this is surprisingly easy Sunny greetings from Zurich, Stephan On Mar 8, 12:34 am, ez qzh...@gmail.com wrote: If a user has a Android phone and Android tablet, how to share the preference data and database