Dependencies
------------

Dropbox for iPhone has the dependencies listed below. If these are not in the correct places relative to the Dropbox Xcode project, the build will fail.

FMDB -- ObjC sqllite wrapper. Source is completely pulled into Dropbox (so you don't need to get this setup), but may be useful to keep an eye on what the devs are doing w/ it.
MPOAuth -- ObjC OAuth library. Dropbox has its own branch... (WCS needs to get repo setup properly)
Three20 -- Useful UI library. Must use Dropbox branch: hg clone ssh://hg@mantra.local//var/hg/three20 three20
JSON.framework -- ObjC JSON library. We use the standard library: svn checkout http://json-framework.googlecode.com/svn/trunk/ json-framework-read-only

Setup Instructions
------------------

These should get you to the point you can build the Dropbox project

$ mkdir hg svn
$ cd hg
$ hg clone ssh://hg@mantra.local//var/hg/iphone iphone
$ hg clone ssh://hg@mantra.local//var/hg/three20 three20
$ cd ../svn
$ svn checkout http://json-framework.googlecode.com/svn/trunk/ json-framework-read-only
$ svn checkout http://mpoauthconnection.googlecode.com/svn/trunk/ mpoauthconnection-read-only
$ patch -p1 < ../hg/iphone/mpoauth_patch.diff

