- Home /
iOS Cloud Build Error: Not A Directory
Hi folks,
Hopefully someone can point me in the right direction on this. I'm using Unity 2018.4 and I'm getting the following errors during the cloud build.
29695: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/maw-games.gnome-invaders.default-ios/temp.XXXXXX20190809-5632-1mnf81g/Pods/Headers/Private/Bolts/BFAppLink.h
29727: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/maw-games.gnome-invaders.default-ios/temp.XXXXXX20190809-5632-1mnf81g/Pods/Headers/Private/FBSDKCoreKit/FBSDKApplicationDelegate+Internal.h
Those are just 2, I cut out the rest. They are all in relation to the Bolts directory and FBSDKCoreKit directory.
Thanks for the help! -Matt
Answer by kwikdev · Jan 24, 2020 at 05:54 PM
Does the Facebook Engineering Team and the Unity QA Department NOT TEST new versions of the Facebook SDK???
This seems like an extremely obvious bug that breaks both local and Unity Cloud Builds
Answer by chico_barnstorm · Nov 12, 2019 at 12:49 PM
@tonybf, @MAWMatt We've fixed it thanks to this post, which suggests the root of the issue is the Facebook SDK for iOS (not Unity). Just replace:
<iosPod name="FBSDKCoreKit" version="~> 5.2" />
<iosPod name="FBSDKLoginKit" version="~> 5.2" />
<iosPod name="FBSDKShareKit" version="~> 5.2" />
With:
<iosPod name="FBSDKCoreKit" version="5.8.0" />
<iosPod name="FBSDKLoginKit" version="5.8.0" />
<iosPod name="FBSDKShareKit" version="5.8.0" />
In your /Assets/FacebookSDK/Plugins/Editor/Dependencies.xml.
Your answer

Follow this Question
Related Questions
Cloud build fails code signing for OneSignal 0 Answers
I am able to build my project successfully on Xcode but it shows an error on Unity Cloud. 0 Answers
IOS Cloud build failing without any Error Log 0 Answers
ArgumentNullException: Value cannot be null. Parameter name: key 1 Answer
Meta information for builds installed using Unity Cloud Build 0 Answers