SwiftyDropbox v0.2 Aligns with Updated API v2 Serialization

Dropbox has released SwiftyDropbox v0.2, an update to its Swift SDK for the API v2 preview. The new release follows a breaking change to the serialization format used by the API v2 preview, and the SDK has been modified to match.

Developers using CocoaPods can upgrade by updating the version reference in their Podfile and running the appropriate command:

platform :ios, '8.0'
use_frameworks!
    
pod 'SwiftyDropbox', :git => '[email protected]:dropbox/SwiftyDropbox.git', :tag => '0.2'
pod update

Alongside the serialization fix, v0.2 introduces a Dropbox helper class. The new class simplifies setup for apps where each user is expected to link only a single Dropbox account, reducing boilerplate and making the client configuration cleaner.

SwiftyDropbox remains in preview, so further API or SDK changes are possible in upcoming releases. Updated example code reflecting the new helper class is available in the original SwiftyDropbox announcement.