drewmccormack / ensembles

A synchronization framework for Core Data.
MIT License
1.63k stars 132 forks source link

migrate to dropboxv2 (sorry to disturb you) #258

Closed Simone67 closed 7 years ago

Simone67 commented 7 years ago

In your specs:

Incorporating Ensembles in an iOS Project To add Ensembles to your App's Xcode Project with CocoaPods... Add the following to your Podfile platform :ios, '7.0' pod "Ensembles", "~> 1.0"

but when I do: --> pod install the release installed is 1.6.2 n ot 1.7(with dropboxv2)

I do not download the Ensembles framework but I use Podfile

I'm sorry to disturb you but can't solve the dropboxv2 problem becouse when I do pod install nothing change...

xjki commented 7 years ago

Point pods to repo original and specify dependencies:

pod 'ObjectiveDropboxOfficial', '~> 3.0.18'
pod 'Ensembles', :git => 'https://github.com/drewmccormack/ensembles', :branch => 'master'
pod 'Ensembles/DropboxV2', :git => 'https://github.com/drewmccormack/ensembles', :branch => 'master'
drewmccormack commented 7 years ago

Also, note that Dropbox v2 now requires iOS 9 or later, so you need to have this line

platform :ios, '9.0'