When migrating my Objective C project for iOS from Dropbox API v1 to v2
I am changing my source code, replacing old
#import <DropboxSDK/DropboxSDK.h>
to new
#import <ObjectiveDropboxOfficial/ObjectiveDropboxOfficial.h>
But when compiling the project I get an error:
'ObjectiveDropboxOfficial/ObjectiveDropboxOfficial.h' file not found
Also in "Pods > Products" section in Xcode both "ObjectiveDropboxOfficial.framework" and "Pods_BASIC.framework" frameworks are marked in red color.
What settings are missing or what I am doing wrong?