<?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 Betreff: Carthage compilation of ObjectiveDropboxOfficial fails, 'DBFilesCreateFolderResult.h' file in Dropbox API Support &amp; Feedback</title>
    <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Carthage-compilation-of-ObjectiveDropboxOfficial-fails/m-p/236032#M13000</link>
    <description>Thanks for following up. We'll look into it.</description>
    <pubDate>Tue, 08 Aug 2017 19:22:00 GMT</pubDate>
    <dc:creator>Greg-DB</dc:creator>
    <dc:date>2017-08-08T19:22:00Z</dc:date>
    <item>
      <title>Carthage compilation of ObjectiveDropboxOfficial fails, 'DBFilesCreateFolderResult.h' file not found</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Carthage-compilation-of-ObjectiveDropboxOfficial-fails/m-p/235868#M12972</link>
      <description>&lt;P&gt;I'm migrating the dropbox dependency for an&amp;nbsp;objective C iOS project to v2&amp;nbsp;by compiling&amp;nbsp;the newest Objective C Dropbox SDK&amp;nbsp;using Carthage. My intention is to add it as a subproject, since it's an older project.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But like the title says, running the following:&lt;/P&gt;&lt;PRE&gt;carthage update --platform iOS&lt;/PRE&gt;&lt;P&gt;is failing. Same thing happens if I try to compile the dependency itself on Xcode. According to Xcode and the xcodebuild log, it seems like it can't locate the following header files: DBFILESCreateFolderResult.h and&amp;nbsp;DBSHARINGAudienceExceptionContentInfo.h&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The&lt;SPAN&gt;&amp;nbsp;xcodebuild log&lt;/SPAN&gt;&amp;nbsp;file has this at&amp;nbsp;the end:&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;The following build commands failed:
        CompileC /Users/ckanis/Library/Caches/org.carthage.CarthageKit/DerivedData/dropbox-sdk-obj-c/3.2.0/Build/Intermediates/ObjectiveDropboxOfficial.build/Release-iphoneos/ObjectiveDropboxOfficial\ iOS.build/Objects-normal/armv7/DBFILESRouteObjects.o Shared/Generated/Routes/RouteObjects/DBFILESRouteObjects.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;Can someone help me understand what's going on? Thanks in advance for the help.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here's the entire xcodebuild log file:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A title="as a gist" href="https://gist.github.com/carolinaerickson/d7e2206ed1a8622e0a90b2251e1a370e" target="_blank"&gt;https://gist.github.com/carolinaerickson/d7e2206ed1a8622e0a90b2251e1a370e&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 29 May 2019 09:20:13 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Carthage-compilation-of-ObjectiveDropboxOfficial-fails/m-p/235868#M12972</guid>
      <dc:creator>CarolinaK</dc:creator>
      <dc:date>2019-05-29T09:20:13Z</dc:date>
    </item>
    <item>
      <title>Betreff: Carthage compilation of ObjectiveDropboxOfficial fails, 'DBFilesCreateFolderResult.h' file</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Carthage-compilation-of-ObjectiveDropboxOfficial-fails/m-p/235937#M12980</link>
      <description>Hi,&lt;BR /&gt;I had this problem too when using it as a Subproject in my App.&lt;BR /&gt;It seams that the .project file is corrupted. There are a lot of header files (.h) files missing.Adding them manually has fixed the problem for me:&lt;BR /&gt;1. You can add them by selecting (one by one) all Groups under "Shared/Generated/ApiObjects" and press "ctrl+alt+A". This will show you the missing files.&lt;BR /&gt;2. After adding them go to the "Subproject/Build-Phase/Headers/" and move all new added .h files to the "Public" section.&lt;BR /&gt;3. Now other errors will occur. There are some removed files. You can see them in the project navigator (left side). Remove them&lt;BR /&gt;4. Now, other errors will occur (FAIL!). Go to your app add the framework AND link the binary. Otherwise the app will crash on startup.&lt;BR /&gt;5. → Build and Run and Enjoy &lt;img class="lia-deferred-image lia-image-emoji" src="https://www.dropboxforum.com/html/@FBF7D2AB59A0D6E861EBF6A36F93B7E2/emoticons/1f642.png" alt=":slightly_smiling_face:" title=":slightly_smiling_face:" /&gt;&lt;BR /&gt;&lt;BR /&gt;Hope this will help you. It took me the hole afternoon.</description>
      <pubDate>Tue, 08 Aug 2017 12:40:36 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Carthage-compilation-of-ObjectiveDropboxOfficial-fails/m-p/235937#M12980</guid>
      <dc:creator>moerschl</dc:creator>
      <dc:date>2017-08-08T12:40:36Z</dc:date>
    </item>
    <item>
      <title>Betreff: Carthage compilation of ObjectiveDropboxOfficial fails, 'DBFilesCreateFolderResult.h' file</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Carthage-compilation-of-ObjectiveDropboxOfficial-fails/m-p/235964#M12983</link>
      <description>Still adding the files, but at least it gives me direction on what to do next. Thank you! &lt;img class="lia-deferred-image lia-image-emoji" src="https://www.dropboxforum.com/html/@FBF7D2AB59A0D6E861EBF6A36F93B7E2/emoticons/1f642.png" alt=":slightly_smiling_face:" title=":slightly_smiling_face:" /&gt;</description>
      <pubDate>Tue, 08 Aug 2017 14:46:51 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Carthage-compilation-of-ObjectiveDropboxOfficial-fails/m-p/235964#M12983</guid>
      <dc:creator>CarolinaK</dc:creator>
      <dc:date>2017-08-08T14:46:51Z</dc:date>
    </item>
    <item>
      <title>Re: Carthage compilation of ObjectiveDropboxOfficial fails, 'DBFilesCreateFolderResult.h' file not f</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Carthage-compilation-of-ObjectiveDropboxOfficial-fails/m-p/236015#M12996</link>
      <description>Thanks for the report! We'll look into why this build is failing in the first place.</description>
      <pubDate>Tue, 08 Aug 2017 18:29:13 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Carthage-compilation-of-ObjectiveDropboxOfficial-fails/m-p/236015#M12996</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2017-08-08T18:29:13Z</dc:date>
    </item>
    <item>
      <title>Betreff: Carthage compilation of ObjectiveDropboxOfficial fails, 'DBFilesCreateFolderResult.h' file</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Carthage-compilation-of-ObjectiveDropboxOfficial-fails/m-p/236025#M12999</link>
      <description>&lt;P&gt;So I figured out why exactly this solution doesn't work for me. I am compiling it before my intention of adding it as a subproject. My goal is to add&amp;nbsp;the .xcodeproj&amp;nbsp;file &amp;nbsp;resulting from compiling dropbox's dependency.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm not getting any more header file not found errors, but I am getting&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;ld: 2203 duplicate symbols for architecture arm64
clang: error: linker command failed with exit code 1 (use -v to see invocation)&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;And before that a lot of `duplicate symbol` errors on .o files like this&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;/Users/ckanis/Desktop/dropbox-sdk-obj-c-master 2/Source/ObjectiveDropboxOfficial/build/ObjectiveDropboxOfficial.build/Release-iphoneos/ObjectiveDropboxOfficial iOS.build/Objects-normal/arm64/DBTeamLogObjects-1BEB3F267DD85A59.o&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 08 Aug 2017 19:25:40 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Carthage-compilation-of-ObjectiveDropboxOfficial-fails/m-p/236025#M12999</guid>
      <dc:creator>CarolinaK</dc:creator>
      <dc:date>2017-08-08T19:25:40Z</dc:date>
    </item>
    <item>
      <title>Betreff: Carthage compilation of ObjectiveDropboxOfficial fails, 'DBFilesCreateFolderResult.h' file</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Carthage-compilation-of-ObjectiveDropboxOfficial-fails/m-p/236032#M13000</link>
      <description>Thanks for following up. We'll look into it.</description>
      <pubDate>Tue, 08 Aug 2017 19:22:00 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Carthage-compilation-of-ObjectiveDropboxOfficial-fails/m-p/236032#M13000</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2017-08-08T19:22:00Z</dc:date>
    </item>
    <item>
      <title>Betreff: Carthage compilation of ObjectiveDropboxOfficial fails, 'DBFilesCreateFolderResult.h' file</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Carthage-compilation-of-ObjectiveDropboxOfficial-fails/m-p/237237#M13099</link>
      <description>&lt;P&gt;Any update on this? I get the same problem when trying to update from May's build to the current one.&lt;/P&gt;</description>
      <pubDate>Wed, 16 Aug 2017 19:17:26 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Carthage-compilation-of-ObjectiveDropboxOfficial-fails/m-p/237237#M13099</guid>
      <dc:creator>Peter J.6</dc:creator>
      <dc:date>2017-08-16T19:17:26Z</dc:date>
    </item>
    <item>
      <title>Betreff: Carthage compilation of ObjectiveDropboxOfficial fails, 'DBFilesCreateFolderResult.h' file</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Carthage-compilation-of-ObjectiveDropboxOfficial-fails/m-p/237242#M13100</link>
      <description>I don't have an update on this yet. I'll follow up here once I do.</description>
      <pubDate>Wed, 16 Aug 2017 19:35:42 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Carthage-compilation-of-ObjectiveDropboxOfficial-fails/m-p/237242#M13100</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2017-08-16T19:35:42Z</dc:date>
    </item>
    <item>
      <title>Betreff: Carthage compilation of ObjectiveDropboxOfficial fails, 'DBFilesCreateFolderResult.h' file</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Carthage-compilation-of-ObjectiveDropboxOfficial-fails/m-p/237243#M13101</link>
      <description>Thanks Greg</description>
      <pubDate>Wed, 16 Aug 2017 19:39:10 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Carthage-compilation-of-ObjectiveDropboxOfficial-fails/m-p/237243#M13101</guid>
      <dc:creator>Peter J.6</dc:creator>
      <dc:date>2017-08-16T19:39:10Z</dc:date>
    </item>
    <item>
      <title>Betreff: Carthage compilation of ObjectiveDropboxOfficial fails, 'DBFilesCreateFolderResult.h' file</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Carthage-compilation-of-ObjectiveDropboxOfficial-fails/m-p/242322#M13513</link>
      <description>This should be fixed in the latest version, currently v3.3.2.</description>
      <pubDate>Tue, 19 Sep 2017 19:48:11 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Carthage-compilation-of-ObjectiveDropboxOfficial-fails/m-p/242322#M13513</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2017-09-19T19:48:11Z</dc:date>
    </item>
  </channel>
</rss>

