Posts & RepliesProblems when migrating from API v1 to v2 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/O...SolvedRe: Problems when migrating from API v1 to v2 Thank you for your suggestion! I will try. Re: Problems when migrating from API v1 to v2 No, this procedure and all other suggestions in that topic did not make missing file /Pods/Target Support Files/ObjectiveDropboxOfficial/ObjectiveDropboxOfficial.modulemap to appear. Maki...Re: Problems when migrating from API v1 to v2 My pod version is 1.2.1 It seems that #import <ObjectiveDropboxOfficial/ObjectiveDropboxOfficial.h> now raises no error, but when I compile that test project I get this error: Error:...Re: Problems when migrating from API v1 to v2 I am using Xcode 8.3.3 on macOS 10.12.5 Re: Problems when migrating from API v1 to v2 Can you please share back the project that compiles? Re: Problems when migrating from API v1 to v2 All issues are the same. This is the latest version of test project: https://yadi.sk/d/6W373tQ23K8Uyg Thank you! Re: Problems when migrating from API v1 to v2 I also have tried this variant. When my Podfile is: platform :ios, '9.0' target 'BASIC' do use_frameworks! pod 'ObjectiveDropboxOfficial' end target 'SB' do pod 'ObjectiveDropboxOffici...Re: Problems when migrating from API v1 to v2 This Podfile: target 'BASIC' do use_frameworks! pod 'ObjectiveDropboxOfficial' end target 'SB' do end And this podfile: target 'BASIC' do use_frameworks! pod 'ObjectiveD...Re: Problems when migrating from API v1 to v2 Also I found this: in BASIC project target in Build Phases there are two Run Script Phases: [CP] Embed Pods Frameworks [CP] Copy Pods Resources and in SB project target these Build Ph...