<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Problems when migrating from API v1 to v2 in Dropbox API Support &amp; Feedback</title>
    <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Problems-when-migrating-from-API-v1-to-v2/m-p/224719#M12146</link>
    <description>&lt;P&gt;Yes, I am following your instructions to install Dropbox SDK using CocoaPods.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My Podfile:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;# Uncomment the next line to define a global platform for your project&lt;BR /&gt;platform :ios, '8.0'&lt;/P&gt;&lt;P&gt;target 'BASIC' do&lt;BR /&gt;# Uncomment the next line if you're using Swift or would like to use dynamic frameworks&lt;BR /&gt;use_frameworks!&lt;/P&gt;&lt;P&gt;# Pods for BASIC&lt;BR /&gt;pod 'ObjectiveDropboxOfficial'&lt;/P&gt;&lt;P&gt;end&lt;/P&gt;&lt;P&gt;#target 'SB' do&lt;BR /&gt;# Uncomment the next line if you're using Swift or would like to use dynamic frameworks&lt;BR /&gt;# use_frameworks!&lt;/P&gt;&lt;P&gt;# Pods for SB&lt;/P&gt;&lt;P&gt;#end&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here pod init command created target 'SB' because my project has two targets: main 'BASIC' app target and 'SB' static library target (SB library uses Dropbox commands, BASIC app uses SB library). But I commented this target out because otherwise I get pod install error if 'SB' static library&amp;nbsp;is present as a target.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;CocoaPods version is 1.2.1&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Xcode version is 8.3.3&lt;/P&gt;</description>
    <pubDate>Wed, 07 Jun 2017 21:57:54 GMT</pubDate>
    <dc:creator>Mr_K</dc:creator>
    <dc:date>2017-06-07T21:57:54Z</dc:date>
    <item>
      <title>Problems when migrating from API v1 to v2</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Problems-when-migrating-from-API-v1-to-v2/m-p/224682#M12142</link>
      <description>&lt;P&gt;When migrating my Objective C project for iOS from Dropbox API v1 to v2&lt;/P&gt;&lt;P&gt;I am&amp;nbsp;changing my source code,&amp;nbsp;replacing old&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;#import &amp;lt;DropboxSDK/DropboxSDK.h&amp;gt;&lt;/P&gt;&lt;P&gt;to new&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;#import &lt;/SPAN&gt;&lt;SPAN&gt;&amp;lt;ObjectiveDropboxOfficial/ObjectiveDropboxOfficial.h&amp;gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But when compiling the project I get an&amp;nbsp;error:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;'ObjectiveDropboxOfficial/ObjectiveDropboxOfficial.h' file not found&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Also in "Pods &amp;gt; Products" section in Xcode both "ObjectiveDropboxOfficial.framework" and "Pods_BASIC.framework" frameworks are marked in red color.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What settings are missing or what I am doing wrong?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 29 May 2019 09:21:52 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Problems-when-migrating-from-API-v1-to-v2/m-p/224682#M12142</guid>
      <dc:creator>Mr_K</dc:creator>
      <dc:date>2019-05-29T09:21:52Z</dc:date>
    </item>
    <item>
      <title>Re: Problems when migrating from API v1 to v2</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Problems-when-migrating-from-API-v1-to-v2/m-p/224715#M12145</link>
      <description>&lt;P&gt;First, to confirm, it sounds like you're using the &lt;A href="https://github.com/dropbox/dropbox-sdk-obj-c#cocoapods" target="_self"&gt;CocoaPods installation method&lt;/A&gt;, is that correct?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If so, can you share:&lt;/P&gt;
&lt;P&gt;- your Podfile&lt;/P&gt;
&lt;P&gt;- the version of CocoaPods you're using&lt;/P&gt;
&lt;P&gt;- the version of Xcode you're using&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Also, make sure you opened the&amp;nbsp;.xcworkspace file and not the .xcodeproj file.&lt;/P&gt;</description>
      <pubDate>Wed, 07 Jun 2017 20:34:51 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Problems-when-migrating-from-API-v1-to-v2/m-p/224715#M12145</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2017-06-07T20:34:51Z</dc:date>
    </item>
    <item>
      <title>Re: Problems when migrating from API v1 to v2</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Problems-when-migrating-from-API-v1-to-v2/m-p/224719#M12146</link>
      <description>&lt;P&gt;Yes, I am following your instructions to install Dropbox SDK using CocoaPods.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My Podfile:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;# Uncomment the next line to define a global platform for your project&lt;BR /&gt;platform :ios, '8.0'&lt;/P&gt;&lt;P&gt;target 'BASIC' do&lt;BR /&gt;# Uncomment the next line if you're using Swift or would like to use dynamic frameworks&lt;BR /&gt;use_frameworks!&lt;/P&gt;&lt;P&gt;# Pods for BASIC&lt;BR /&gt;pod 'ObjectiveDropboxOfficial'&lt;/P&gt;&lt;P&gt;end&lt;/P&gt;&lt;P&gt;#target 'SB' do&lt;BR /&gt;# Uncomment the next line if you're using Swift or would like to use dynamic frameworks&lt;BR /&gt;# use_frameworks!&lt;/P&gt;&lt;P&gt;# Pods for SB&lt;/P&gt;&lt;P&gt;#end&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here pod init command created target 'SB' because my project has two targets: main 'BASIC' app target and 'SB' static library target (SB library uses Dropbox commands, BASIC app uses SB library). But I commented this target out because otherwise I get pod install error if 'SB' static library&amp;nbsp;is present as a target.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;CocoaPods version is 1.2.1&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Xcode version is 8.3.3&lt;/P&gt;</description>
      <pubDate>Wed, 07 Jun 2017 21:57:54 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Problems-when-migrating-from-API-v1-to-v2/m-p/224719#M12146</guid>
      <dc:creator>Mr_K</dc:creator>
      <dc:date>2017-06-07T21:57:54Z</dc:date>
    </item>
    <item>
      <title>Re: Problems when migrating from API v1 to v2</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Problems-when-migrating-from-API-v1-to-v2/m-p/224848#M12153</link>
      <description>What output did you get from 'pod install' for this Podfile?&lt;BR /&gt;&lt;BR /&gt;Note that the Objective-C SDK supports iOS 9+, but you seem to be targeting iOS 8:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://github.com/dropbox/dropbox-sdk-obj-c#system-requirements" target="_blank"&gt;https://github.com/dropbox/dropbox-sdk-obj-c#system-requirements&lt;/A&gt;</description>
      <pubDate>Thu, 08 Jun 2017 18:45:27 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Problems-when-migrating-from-API-v1-to-v2/m-p/224848#M12153</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2017-06-08T18:45:27Z</dc:date>
    </item>
    <item>
      <title>Re: Problems when migrating from API v1 to v2</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Problems-when-migrating-from-API-v1-to-v2/m-p/224855#M12156</link>
      <description>&lt;P&gt;&lt;SPAN&gt;$ pod install&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Analyzing dependencies&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Downloading dependencies&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Using ObjectiveDropboxOfficial (3.0.15)&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Generating Pods project&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Integrating client project&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Sending stats&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Pod installation complete! There is 1 dependency from the Podfile and 1 total pod installed.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;The very first pod install gave some warnings about framework path and compiler flags settings, so I added $(inherited) where it was necessary according to&amp;nbsp;suggestion. After that pod install warnings went away.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Thank you for your note, changed my app deployment target to iOS 9 and updated Podfile to platform iOS 9.0.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;#import &lt;/SPAN&gt;&lt;SPAN&gt;&amp;lt;ObjectiveDropboxOfficial/ObjectiveDropboxOfficial.h&amp;gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;still gives 'file not found' error.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 08 Jun 2017 19:24:56 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Problems-when-migrating-from-API-v1-to-v2/m-p/224855#M12156</guid>
      <dc:creator>Mr_K</dc:creator>
      <dc:date>2017-06-08T19:24:56Z</dc:date>
    </item>
    <item>
      <title>Re: Problems when migrating from API v1 to v2</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Problems-when-migrating-from-API-v1-to-v2/m-p/224875#M12161</link>
      <description>Thanks! It does look like that succeeded, and if this is still occurring when you're trying with iOS 9, we'll have to investigate further to see what the issue may be. &lt;BR /&gt;&lt;BR /&gt;To help with that, would it be possible for you to supply a sample project, or stripped down version of your project that is exhibiting this issue? It sounds like there's something about the configuration of your project that may be relevant here.&lt;BR /&gt;&lt;BR /&gt;If you're prefer to share privately, you can open an API ticket with it here:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://www.dropbox.com/developers/contact" target="_blank"&gt;https://www.dropbox.com/developers/contact&lt;/A&gt;</description>
      <pubDate>Thu, 08 Jun 2017 22:16:02 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Problems-when-migrating-from-API-v1-to-v2/m-p/224875#M12161</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2017-06-08T22:16:02Z</dc:date>
    </item>
    <item>
      <title>Re: Problems when migrating from API v1 to v2</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Problems-when-migrating-from-API-v1-to-v2/m-p/225098#M12194</link>
      <description>&lt;P&gt;Yes, thank you for your time.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here is the stripped down project which has only one compilation error we are speaking about:&amp;nbsp;&lt;A href="https://yadi.sk/d/UB0trH753Jz7tr" target="_blank"&gt;https://yadi.sk/d/UB0trH753Jz7tr&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 09 Jun 2017 22:18:05 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Problems-when-migrating-from-API-v1-to-v2/m-p/225098#M12194</guid>
      <dc:creator>Mr_K</dc:creator>
      <dc:date>2017-06-09T22:18:05Z</dc:date>
    </item>
    <item>
      <title>Re: Problems when migrating from API v1 to v2</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Problems-when-migrating-from-API-v1-to-v2/m-p/225103#M12197</link>
      <description>Thanks! We'll look into it.</description>
      <pubDate>Fri, 09 Jun 2017 22:59:02 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Problems-when-migrating-from-API-v1-to-v2/m-p/225103#M12197</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2017-06-09T22:59:02Z</dc:date>
    </item>
    <item>
      <title>Re: Problems when migrating from API v1 to v2</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Problems-when-migrating-from-API-v1-to-v2/m-p/225472#M12242</link>
      <description>&lt;P&gt;Sorry for the delay here. Not sure why CocoaPods isn't working. Try adding `Pods_BASIC.framework` to `Link Binary With Libraries` under `Build Phases` for `SB` target (see attached image).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Let me know if this works for you.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Untitled.png" style="width: 999px;"&gt;&lt;img src="https://www.dropboxforum.com/t5/image/serverpage/image-id/561i292948CE9F0F9CFD/image-size/large?v=v2&amp;amp;px=999" role="button" title="Untitled.png" alt="Untitled.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 12 Jun 2017 22:25:12 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Problems-when-migrating-from-API-v1-to-v2/m-p/225472#M12242</guid>
      <dc:creator>Stephen C.14</dc:creator>
      <dc:date>2017-06-12T22:25:12Z</dc:date>
    </item>
    <item>
      <title>Re: Problems when migrating from API v1 to v2</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Problems-when-migrating-from-API-v1-to-v2/m-p/225477#M12243</link>
      <description>&lt;P&gt;Thank you for your suggestion.&lt;/P&gt;
&lt;P&gt;No, this did not help. Everything is the same.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I think that there could be some problems with SDK path, because an&amp;nbsp;error like ".h file not found" is a compilation error, not linking error.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Also SDK files are marked with red color (image attached). This also can show some kind of problem with SDK location.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Снимок экрана 2017-06-13 в 3.59.27.png" style="width: 999px;"&gt;&lt;img src="https://www.dropboxforum.com/t5/image/serverpage/image-id/562i91C9059383A1DBCD/image-size/large?v=v2&amp;amp;px=999" role="button" title="Снимок экрана 2017-06-13 в 3.59.27.png" alt="Снимок экрана 2017-06-13 в 3.59.27.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 12 Jun 2017 23:01:59 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Problems-when-migrating-from-API-v1-to-v2/m-p/225477#M12243</guid>
      <dc:creator>Mr_K</dc:creator>
      <dc:date>2017-06-12T23:01:59Z</dc:date>
    </item>
    <item>
      <title>Re: Problems when migrating from API v1 to v2</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Problems-when-migrating-from-API-v1-to-v2/m-p/225491#M12247</link>
      <description>&lt;P&gt;Also I found this:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;in BASIC project target in Build Phases there are two Run Script Phases:&lt;/P&gt;
&lt;P&gt;[CP] Embed Pods Frameworks&lt;/P&gt;
&lt;P&gt;[CP] Copy Pods Resources&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;and in SB project target these Build Phases are absent.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Maybe this can be the reason of error?&lt;/P&gt;
&lt;P&gt;As far as I understand these Build Phases are created when installing pod, taking into account Podfile settings.&lt;/P&gt;
&lt;P&gt;But in Podfile I have only one target: 'BASIC', target 'SB' is&amp;nbsp;commented out, because if I also&amp;nbsp;add 'SB' as a target:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;platform :ios, '9.0'&lt;/P&gt;
&lt;P&gt;target 'BASIC' do&lt;BR /&gt; use_frameworks!&lt;/P&gt;
&lt;P&gt;pod 'ObjectiveDropboxOfficial'&lt;BR /&gt;end&lt;/P&gt;
&lt;P&gt;target 'SB' do&lt;BR /&gt; use_frameworks!&lt;/P&gt;
&lt;P&gt;pod 'ObjectiveDropboxOfficial'&lt;BR /&gt;end&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I get these errors when installing pod:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;$ pod install&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Analyzing dependencies&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;[!] Unable to find host target(s) for SB. Please add the host targets for the embedded targets to the Podfile.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Certain kinds of targets require a host target. A host target is a "parent" target which embeds a "child" target. These are example types of targets that need a host target:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;- Framework&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;- App Extension&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;- Watch OS 1 Extension&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;- Messages Extension (except when used with a Messages Application)&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;So, maybe this is the reason of error? But how to install pod for 'SB' target?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 13 Jun 2017 00:37:51 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Problems-when-migrating-from-API-v1-to-v2/m-p/225491#M12247</guid>
      <dc:creator>Mr_K</dc:creator>
      <dc:date>2017-06-13T00:37:51Z</dc:date>
    </item>
    <item>
      <title>Re: Problems when migrating from API v1 to v2</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Problems-when-migrating-from-API-v1-to-v2/m-p/225613#M12256</link>
      <description>&lt;P&gt;If you uncomment `&lt;SPAN&gt;target 'SB' do` in your Podfile, and then you run `pod install`, even with the CocoaPods errors, the .xcworkspace file builds for me for target `SB`.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Can you confirm this?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 13 Jun 2017 22:28:29 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Problems-when-migrating-from-API-v1-to-v2/m-p/225613#M12256</guid>
      <dc:creator>Stephen C.14</dc:creator>
      <dc:date>2017-06-13T22:28:29Z</dc:date>
    </item>
    <item>
      <title>Re: Problems when migrating from API v1 to v2</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Problems-when-migrating-from-API-v1-to-v2/m-p/225658#M12264</link>
      <description>&lt;P&gt;This Podfile:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;target 'BASIC' do&lt;BR /&gt; use_frameworks!&lt;BR /&gt; pod 'ObjectiveDropboxOfficial'&lt;BR /&gt;end&lt;/P&gt;
&lt;P&gt;target 'SB' do&lt;BR /&gt;end&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;And this podfile:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;target 'BASIC' do&lt;BR /&gt; use_frameworks!&lt;BR /&gt; pod 'ObjectiveDropboxOfficial'&lt;BR /&gt;end&lt;/P&gt;
&lt;P&gt;target 'SB' do&lt;BR /&gt; use_frameworks!&lt;BR /&gt; pod 'ObjectiveDropboxOfficial'&lt;BR /&gt;end&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Both give the same pod install output:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Analyzing dependencies&lt;BR /&gt;[!] Unable to find host target(s) for SB. Please add the host targets for the embedded targets to the Podfile.&lt;BR /&gt;Certain kinds of targets require a host target. A host target is a "parent" target which embeds a "child" target. These are example types of targets that need a host target:&lt;BR /&gt;- Framework&lt;BR /&gt;- App Extension&lt;BR /&gt;- Watch OS 1 Extension&lt;BR /&gt;- Messages Extension (except when used with a Messages Application)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;And give these two Xcode compilation errors:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;/Users/kibernetik/Мои программы/BASIC copy/SB/ViewController.h:7:9: 'ObjectiveDropboxOfficial/ObjectiveDropboxOfficial.h' file not found&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Error: unable to read module map contents from 'Target Support Files/ObjectiveDropboxOfficial/ObjectiveDropboxOfficial.modulemap': Error Domain=NSCocoaErrorDomain Code=260 "The file “ObjectiveDropboxOfficial.modulemap” couldn’t be opened because there is no such file." UserInfo={NSFilePath=/Users/kibernetik/Мои программы/BASIC copy/Pods/Target Support Files/ObjectiveDropboxOfficial/ObjectiveDropboxOfficial.modulemap, NSUnderlyingError=0x7fd04bcfb3b0 {Error Domain=NSPOSIXErrorDomain Code=2 "No such file or directory"}}&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Of course Xcode was reloaded each time.&lt;/P&gt;</description>
      <pubDate>Wed, 14 Jun 2017 07:35:31 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Problems-when-migrating-from-API-v1-to-v2/m-p/225658#M12264</guid>
      <dc:creator>Mr_K</dc:creator>
      <dc:date>2017-06-14T07:35:31Z</dc:date>
    </item>
    <item>
      <title>Re: Problems when migrating from API v1 to v2</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Problems-when-migrating-from-API-v1-to-v2/m-p/225764#M12278</link>
      <description>&lt;P&gt;In your Podfile, please delete `&lt;SPAN&gt;use_frameworks!` for target `'SB'` only. Then things should work.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;(it doesn't really make sense to link a framework to a library).&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 14 Jun 2017 17:37:30 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Problems-when-migrating-from-API-v1-to-v2/m-p/225764#M12278</guid>
      <dc:creator>Stephen C.14</dc:creator>
      <dc:date>2017-06-14T17:37:30Z</dc:date>
    </item>
    <item>
      <title>Re: Problems when migrating from API v1 to v2</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Problems-when-migrating-from-API-v1-to-v2/m-p/225780#M12280</link>
      <description>&lt;P&gt;I also have tried this variant. When my Podfile is:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;platform :ios, '9.0'&lt;BR /&gt;target 'BASIC' do&lt;BR /&gt; use_frameworks!&lt;BR /&gt; pod 'ObjectiveDropboxOfficial'&lt;BR /&gt;end&lt;BR /&gt;target 'SB' do&lt;BR /&gt; pod 'ObjectiveDropboxOfficial'&lt;BR /&gt;end&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I get the same pod install warning and the same two errors.&lt;/P&gt;
&lt;P&gt;Actually I get 'file no found' error even prior to compiling: Xcode editor immediately marks this code line as erroneous just after the project is loaded.&lt;/P&gt;</description>
      <pubDate>Wed, 14 Jun 2017 18:27:59 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Problems-when-migrating-from-API-v1-to-v2/m-p/225780#M12280</guid>
      <dc:creator>Mr_K</dc:creator>
      <dc:date>2017-06-14T18:27:59Z</dc:date>
    </item>
    <item>
      <title>Re: Problems when migrating from API v1 to v2</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Problems-when-migrating-from-API-v1-to-v2/m-p/225781#M12281</link>
      <description>&lt;P&gt;I still get the pod warnings as well, but everything builds correctly for me.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please ensure that you close Xcode before calling `pod install` and that you open the `.xcworkspace` file and not the `.xcodeproj` file.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please also do a full a rebuild (cmd+option+shift+k) after `pod install`.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you have done all of these things, then please repost your updated project here, as I am not seeing the same issues that you are.&lt;/P&gt;</description>
      <pubDate>Wed, 14 Jun 2017 18:34:51 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Problems-when-migrating-from-API-v1-to-v2/m-p/225781#M12281</guid>
      <dc:creator>Stephen C.14</dc:creator>
      <dc:date>2017-06-14T18:34:51Z</dc:date>
    </item>
    <item>
      <title>Re: Problems when migrating from API v1 to v2</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Problems-when-migrating-from-API-v1-to-v2/m-p/225783#M12283</link>
      <description>&lt;P&gt;All issues are the same.&lt;/P&gt;
&lt;P&gt;This is the latest version of test project:&amp;nbsp;&lt;A href="https://yadi.sk/d/6W373tQ23K8Uyg" target="_blank"&gt;https://yadi.sk/d/6W373tQ23K8Uyg&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Thank you!&lt;/P&gt;</description>
      <pubDate>Wed, 14 Jun 2017 19:03:27 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Problems-when-migrating-from-API-v1-to-v2/m-p/225783#M12283</guid>
      <dc:creator>Mr_K</dc:creator>
      <dc:date>2017-06-14T19:03:27Z</dc:date>
    </item>
    <item>
      <title>Re: Problems when migrating from API v1 to v2</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Problems-when-migrating-from-API-v1-to-v2/m-p/225829#M12294</link>
      <description>&lt;P&gt;This project builds fine for me after running `pod install` and opening the `.xcworkspace` file.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please ensure that you have Xcode&amp;nbsp;Version 8.3.3+ installed.&lt;/P&gt;</description>
      <pubDate>Thu, 15 Jun 2017 02:23:03 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Problems-when-migrating-from-API-v1-to-v2/m-p/225829#M12294</guid>
      <dc:creator>Stephen C.14</dc:creator>
      <dc:date>2017-06-15T02:23:03Z</dc:date>
    </item>
    <item>
      <title>Re: Problems when migrating from API v1 to v2</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Problems-when-migrating-from-API-v1-to-v2/m-p/225986#M12311</link>
      <description>&lt;P&gt;Can you please share back the project that compiles?&lt;/P&gt;</description>
      <pubDate>Thu, 15 Jun 2017 22:03:32 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Problems-when-migrating-from-API-v1-to-v2/m-p/225986#M12311</guid>
      <dc:creator>Mr_K</dc:creator>
      <dc:date>2017-06-15T22:03:32Z</dc:date>
    </item>
    <item>
      <title>Re: Problems when migrating from API v1 to v2</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Problems-when-migrating-from-API-v1-to-v2/m-p/225988#M12312</link>
      <description>&lt;P&gt;Same project as the one you just uploaded (the second one).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Which version of Xcode are you using? Please download the latest one, otherwise things might not compile.&lt;/P&gt;</description>
      <pubDate>Thu, 15 Jun 2017 22:15:13 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Problems-when-migrating-from-API-v1-to-v2/m-p/225988#M12312</guid>
      <dc:creator>Stephen C.14</dc:creator>
      <dc:date>2017-06-15T22:15:13Z</dc:date>
    </item>
  </channel>
</rss>

