John Shammas
John Shammas

Reputation: 2715

Dropbox sync using PhoneGap

I'm having quite an annoying issue. I'd like to begin developing an iOS app, but I'd rather not learn Object-C due to time. I'm looking at PhoneGap, but have one issue.

If possible, I'd also like to sync the data across multiple devices. I'd rather not use a remote database, as I have no idea what the expected amount of users will be, and therefore no idea how much bandwidth I will need for a MySQL database. Is it possible to save data to txt files, then upload them to Dropbox using JavaScript (and all on PhoneGap)?

Upvotes: 1

Views: 1126

Answers (1)

agmcleod
agmcleod

Reputation: 13621

Really i think learning the language is a relatively simpler challenge. It's learning the API itself that will take time, and you will have that issue regardless of where you go. If you prefer the javascript syntax, i know there is Titanium Appcelerator. But given the features you want, I think learning objective-c is the way to go, because there are so many resources for using the API. I know of a few apps that use Dropbox as storage. Byword is one of them.

Depending on the app you are building, dropbox with flat files might suit your needs. If you need something more customizable, then you may need to build a remote db server. Though understand that sync is hard.

Upvotes: 1

Related Questions