Hi there!
I am new with your API but now I got a task to update it.
I am trying to migrate our app from API v1 to API v2 and this is like hopeless fighting.
First of all, we don't use any dependency manager. I tried to add as subfolder in our project and it failed to build. It complains about that some header files are not found.
Today I did it with Cocoa pod. It seems like it fixed problem and all headers are in.
But then I follow instructions from GET STARTED part on github and again a lot of troubles.
(https://github.com/dropbox/dropbox-sdk-obj-c#handling-the-authorization-flow)
According to this guide I should use [DBClientsManager setupWIthKey:@<API_KEY>]
but xcode complains that there is no DBClientsManager class and suggets to use
DropboxClientsManager. I have replaced it.
Then when I try the authorization flow part Xcode again stops me and complains that openUrl is deprecated.
BTW, here https://dropbox.github.io/dropbox-sdk-obj-c/api-docs/latest/ you can find DropboxClientsManager class but not DBClientsManager.
Could you please point me what I am doing wrong? Is any possibility to add
ObjectiveDropboxOfficial manually as framework? and what wrong with documentation?
Thanks