facebook / facebook-sdk-for-unity

The facebook sdk for unity.
https://developers.facebook.com/docs/unity
Other
489 stars 256 forks source link

v7.17.1 iOS Cloud Build Error (Unity 2019) #287

Closed fmoyano closed 5 years ago

fmoyano commented 5 years ago

I'm having problems making an iOS build in Cloud Build using v7.17.1. The first errors that I get are the following:

[Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/francismoy.match3.ios-build-distribution/temp.XXXXXX20190718-5485-117t2vp/Pods/Headers/Private/Bolts/BFAppLink.h (More errors like this follow...)

However, my intuition is that these errors are not the ones causing the build to fail, and actually there are other errors later that seem more worrying: ❌; /BUILD_PATH/francismoy.match3.ios-build-distribution/temp.XXXXXX20190718-5485-117t2vp/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/FBSDKBridgeAPI.m:338:17: a parameter list without types is only allowed in a function definition ❌; /BUILD_PATH/francismoy.match3.ios-build-distribution/temp.XXXXXX20190718-5485-117t2vp/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/FBSDKBridgeAPI.m:338:22: expected ';' at end of declaration ❌; /BUILD_PATH/francismoy.match3.ios-build-distribution/temp.XXXXXX20190718-5485-117t2vp/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/FBSDKBridgeAPI.m:341:5: use of undeclared identifier 'strongSelf' ❌; /BUILD_PATH/francismoy.match3.ios-build-distribution/temp.XXXXXX20190718-5485-117t2vp/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/FBSDKBridgeAPI.m:344:8: use of undeclared identifier 'strongSelf' ❌; /BUILD_PATH/francismoy.match3.ios-build-distribution/temp.XXXXXX20190718-5485-117t2vp/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/FBSDKBridgeAPI.m:346:5: use of undeclared identifier 'strongSelf' ❌; /BUILD_PATH/francismoy.match3.ios-build-distribution/temp.XXXXXX20190718-5485-117t2vp/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/BridgeAPI/FBSDKBridgeAPI.m:347:5: use of undeclared identifier 'strongSelf'

EDIT: I'm using Xcode 10.2 (the lastest installed).

Any idea of which might be the cause?

fmoyano commented 5 years ago

Ok, I've been researching and I've reached the conclusion that the problematic line is the following (in this file):

__weak typeof(self) weakSelf = self;

As mentioned here, "typeof is only enabled in Clang when the language is a GNUXX variant of C, but not for CXX", so my guess is that the Xcode version running in the Cloud has CXX as dialect instead of GNUXX dialect.

At this point, I think I have several options: 1) Patch the Xcode project as a postbuild step to change the dialect. 2) Persuade the iOS framework team to change all typeof by __typeof. 3) Try to compile with an earlier version of Xcode that has GNUXX dialect by default (if that's the case).

I'll let you know once I know something else, although if you have any recommendation, I'd be glad to hear.

fmoyano commented 5 years ago

Up to now, I've been unable to find a solution, and I continue without being able to build on iOS. Different versions of Xcode don't solve the problem.

Also, I've tried patching the Xcode project in many different ways, using for example:

proj.SetBuildPropertyForConfig(releaseBuildConfig, "GCC_C_LANGUAGE_STANDARD", "gnu99");
proj.AddBuildPropertyForConfig(releaseBuildConfig, "GCC_ENABLE_ASM_KEYWORD", "YES");
proj.AddBuildPropertyForConfig(releaseBuildConfig, "GCC_NO_COMMON_BLOCKS", "NO");
proj.SetBuildPropertyForConfig(debugBuildConfig, "GCC_C_LANGUAGE_STANDARD", "gnu99");
proj.AddBuildPropertyForConfig(debugBuildConfig, "GCC_ENABLE_ASM_KEYWORD", "YES");
proj.AddBuildPropertyForConfig(debugBuildConfig, "GCC_NO_COMMON_BLOCKS", "NO");

Whenever I use the GNU99 dialect, the compilation errors that I mentioned before regarding "typeof" disappear, but I get a duplicate symbol linker error:

❌; ld: 2 duplicate symbols for architecture armv7 8776: ❌; clang: error: linker command failed with exit code 1 (use -v to see invocation) 8777: ▸ Compiling mscorlib6.cpp 8778: ❌; duplicate symbol __ZN3DSP27ConstantPowerChannelMixdownEP13AkAudioBufferjjPfff in 8779: > libAkSoundEngine.a(ConstantPowerChannelMixdown.o) 8780: > mscorlib6.o

This linker error doesn't happen (i.e. I get the build to succeed and work) if I don't use the Facebook SDK, not needing therefore to change the language dialect to "GNU99", so I don't know how everything fits together and makes sense... Any idea?

happypepper commented 5 years ago

I think if you change the ios play services resolver settings to "add Cocoapods to the Xcode workspace" this will be gone.

fmoyano commented 5 years ago

Thanks for your suggestion @happypepper but that wasn't the problem.

The problem with the Facebook SDK was the one mentioned above (need to change Xcode C compiler to GNU99).

The linker error is related to something different: a problem with the Wwise audio library, and it only happens when building using Unity Cloud, but that's an unrelated different story.

TWBestATM commented 5 years ago

Do you fix this problem? how ot fix?

fmoyano commented 5 years ago

If you mean the compilation problem that I described above, I added a [PostProcessBuild] attribute with the following code (actually the commented part I think it's not necessary, but if it fails, uncomment it):

var targetName = PBXProject.GetUnityTargetName();
var proj_path = PBXProject.GetPBXProjectPath(xcodeProjectPath);
var proj = new PBXProject();
proj.ReadFromFile(proj_path);

var mainTarget = proj.TargetGuidByName(targetName);
proj.SetBuildProperty(mainTarget, "GCC_C_LANGUAGE_STANDARD", "gnu99");
proj.AddBuildProperty(mainTarget, "GCC_ENABLE_ASM_KEYWORD", "YES");
proj.AddBuildProperty(mainTarget, "GCC_NO_COMMON_BLOCKS", "NO");

/*var releaseBuildConfig = proj.BuildConfigByName(mainTarget, "Release");
var debugBuildConfig = proj.BuildConfigByName(mainTarget, "Debug");
proj.SetBuildPropertyForConfig(releaseBuildConfig, "GCC_C_LANGUAGE_STANDARD", "gnu99");
proj.AddBuildPropertyForConfig(releaseBuildConfig, "GCC_ENABLE_ASM_KEYWORD", "YES");
proj.AddBuildPropertyForConfig(releaseBuildConfig, "GCC_NO_COMMON_BLOCKS", "NO"); 
proj.SetBuildPropertyForConfig(debugBuildConfig, "GCC_C_LANGUAGE_STANDARD", "gnu99");
proj.AddBuildPropertyForConfig(debugBuildConfig, "GCC_ENABLE_ASM_KEYWORD", "YES");
proj.AddBuildPropertyForConfig(debugBuildConfig, "GCC_NO_COMMON_BLOCKS", "NO");*/

File.WriteAllText(proj_path, proj.WriteToString());

The linker problem with Wwise (which for some reason only occurs from Facebook SDK 7.16.x onwards), is a different story and here you can see more details).

TWBestATM commented 5 years ago

my problem I get many error like this: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/francismoy.match3.ios-build-distribution/temp.XXXXXX20190718-5485-117t2vp/Pods/Headers/Private/Bolts/BFAppLink.h

I can build ipa success but when I call fb.init(),it crash I want to know how to fix change the ios play services resolver settings to "add Cocoapods to the Xcode workspace" every one say that but not work in cloudbuild

fmoyano commented 5 years ago

First, if you have the latest version of Play Services Resolver, you'll probably see the following message when trying to change to "add Cocoapods to the Xcode workspace":

"Unity Cloud Build and Unity 5.5 and below do not open generated Xcode workspaces so this plugin will fall back to Xcode Project integration in those environments"

So it seems like Unity Build Cloud doesn't allow that option and therefore I wouldn't expect it to solve anything.

Don't you have any other error messages in the Cloud Build log?

TWBestATM commented 5 years ago

[Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/Bolts/BFAppLink.h 7834: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/Bolts/BFAppLink_Internal.h 7835: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/Bolts/BFAppLinkNavigation.h 7836: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/Bolts/BFAppLinkResolving.h 7837: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/Bolts/BFAppLinkReturnToRefererController.h 7838: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/Bolts/BFAppLinkReturnToRefererView.h 7839: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/Bolts/BFAppLinkReturnToRefererView_Internal.h 7840: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/Bolts/BFAppLinkTarget.h 7841: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/Bolts/BFCancellationToken.h 7842: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/Bolts/BFCancellationTokenRegistration.h 7843: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/Bolts/BFCancellationTokenSource.h 7844: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/Bolts/BFExecutor.h 7845: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/Bolts/BFGeneric.h 7846: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/Bolts/BFMeasurementEvent.h 7847: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/Bolts/BFMeasurementEvent_Internal.h 7848: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/Bolts/BFTask.h 7849: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/Bolts/BFTaskCompletionSource.h 7850: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/Bolts/BFURL.h 7851: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/Bolts/BFURL_Internal.h 7852: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/Bolts/BFWebViewAppLinkResolver.h 7853: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/Bolts/Bolts.h 7854: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKCoreKit/FBSDKAccessToken.h 7855: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKCoreKit/FBSDKAccessTokenCache.h 7856: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKCoreKit/FBSDKAccessTokenCaching.h 7857: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKCoreKit/FBSDKAccessTokenExpirer.h 7858: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKCoreKit/FBSDKAppEvents+Internal.h 7859: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKCoreKit/FBSDKAppEvents.h 7860: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKCoreKit/FBSDKAppEventsDeviceInfo.h 7861: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKCoreKit/FBSDKAppEventsState.h 7862: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKCoreKit/FBSDKAppEventsStateManager.h 7863: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKCoreKit/FBSDKAppEventsUtility.h 7864: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKCoreKit/FBSDKApplicationDelegate+Internal.h 7865: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKCoreKit/FBSDKApplicationDelegate.h 7866: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKCoreKit/FBSDKApplicationObserving.h 7867: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKCoreKit/FBSDKAppLink.h 7868: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKCoreKit/FBSDKAppLink_Internal.h 7869: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKCoreKit/FBSDKAppLinkNavigation.h 7870: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKCoreKit/FBSDKAppLinkResolver.h 7871: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKCoreKit/FBSDKAppLinkResolving.h 7872: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKCoreKit/FBSDKAppLinkReturnToRefererController.h 7873: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKCoreKit/FBSDKAppLinkReturnToRefererView.h 7874: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKCoreKit/FBSDKAppLinkReturnToRefererView_Internal.h 7875: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKCoreKit/FBSDKAppLinkTarget.h 7876: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKCoreKit/FBSDKAppLinkUtility.h 7877: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKCoreKit/FBSDKAudioResourceLoader.h 7878: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKCoreKit/FBSDKBase64.h 7879: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKCoreKit/FBSDKBasicUtility+Internal.h 7880: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKCoreKit/FBSDKBasicUtility.h 7881: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKCoreKit/FBSDKBridgeAPI.h 7882: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKCoreKit/FBSDKBridgeAPIProtocol.h 7883: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKCoreKit/FBSDKBridgeAPIProtocolNativeV1.h 7884: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKCoreKit/FBSDKBridgeAPIProtocolType.h 7885: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKCoreKit/FBSDKBridgeAPIProtocolWebV1.h 7886: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKCoreKit/FBSDKBridgeAPIProtocolWebV2.h 7887: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKCoreKit/FBSDKBridgeAPIRequest+Private.h 7888: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKCoreKit/FBSDKBridgeAPIRequest.h 7889: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKCoreKit/FBSDKBridgeAPIResponse.h 7890: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKCoreKit/FBSDKButton+Subclass.h 7891: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKCoreKit/FBSDKButton.h 7892: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKCoreKit/FBSDKCloseIcon.h 7893: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKCoreKit/FBSDKCodelessIndexer.h 7894: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKCoreKit/FBSDKCodelessMacros.h 7895: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKCoreKit/FBSDKCodelessParameterComponent.h 7896: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKCoreKit/FBSDKCodelessPathComponent.h 7897: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKCoreKit/FBSDKColor.h 7898: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKCoreKit/FBSDKConstants.h 7899: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKCoreKit/FBSDKContainerViewController.h 7900: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKCoreKit/FBSDKCopying.h 7901: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKCoreKit/FBSDKCoreKit+Internal.h 7902: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKCoreKit/FBSDKCoreKit.h 7903: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKCoreKit/FBSDKCrypto.h 7904: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKCoreKit/FBSDKDeviceRequestsHelper.h 7905: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKCoreKit/FBSDKDialogConfiguration.h 7906: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKCoreKit/FBSDKDynamicFrameworkLoader.h 7907: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKCoreKit/FBSDKEventBinding.h 7908: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKCoreKit/FBSDKEventBindingManager.h 7909: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKCoreKit/FBSDKGateKeeperManager.h 7910: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKCoreKit/FBSDKGraphRequest+Internal.h 7911: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKCoreKit/FBSDKGraphRequest.h 7912: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKCoreKit/FBSDKGraphRequestBody.h 7913: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKCoreKit/FBSDKGraphRequestConnection+Internal.h 7914: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKCoreKit/FBSDKGraphRequestConnection.h 7915: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKCoreKit/FBSDKGraphRequestDataAttachment.h 7916: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKCoreKit/FBSDKGraphRequestMetadata.h 7917: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKCoreKit/FBSDKGraphRequestPiggybackManager.h 7918: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKCoreKit/FBSDKHybridAppEventsScriptMessageHandler.h 7919: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKCoreKit/FBSDKIcon.h 7920: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKCoreKit/FBSDKImageDownloader.h 7921: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKCoreKit/FBSDKInternalUtility.h 7922: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKCoreKit/FBSDKKeychainStore.h 7923: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKCoreKit/FBSDKKeychainStoreViaBundleID.h 7924: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKCoreKit/FBSDKLogger.h 7925: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKCoreKit/FBSDKLogo.h 7926: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKCoreKit/FBSDKMaleSilhouetteIcon.h 7927: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKCoreKit/FBSDKMath.h 7928: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKCoreKit/FBSDKMeasurementEvent.h 7929: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKCoreKit/FBSDKMeasurementEvent_Internal.h 7930: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKCoreKit/FBSDKMeasurementEventListener.h 7931: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKCoreKit/FBSDKMonotonicTime.h 7932: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKCoreKit/FBSDKMutableCopying.h 7933: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKCoreKit/FBSDKPaymentObserver.h 7934: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKCoreKit/FBSDKProfile+Internal.h 7935: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKCoreKit/FBSDKProfile.h 7936: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKCoreKit/FBSDKProfilePictureView.h 7937: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKCoreKit/FBSDKRestrictiveDataFilterManager.h 7938: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKCoreKit/FBSDKServerConfiguration+Internal.h 7939: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKCoreKit/FBSDKServerConfiguration.h 7940: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKCoreKit/FBSDKServerConfigurationManager+Internal.h 7941: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKCoreKit/FBSDKServerConfigurationManager.h 7942: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKCoreKit/FBSDKSettings+Internal.h 7943: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKCoreKit/FBSDKSettings.h 7944: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKCoreKit/FBSDKSwizzler.h 7945: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKCoreKit/FBSDKTestUsersManager.h 7946: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKCoreKit/FBSDKTimeSpentData.h 7947: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKCoreKit/FBSDKTriStateBOOL.h 7948: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKCoreKit/FBSDKTypeUtility.h 7949: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKCoreKit/FBSDKUIUtility.h 7950: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKCoreKit/FBSDKURL.h 7951: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKCoreKit/FBSDKURL_Internal.h 7952: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKCoreKit/FBSDKURLOpening.h 7953: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKCoreKit/FBSDKURLSessionTask.h 7954: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKCoreKit/FBSDKUserDataStore.h 7955: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKCoreKit/FBSDKUtility.h 7956: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKCoreKit/FBSDKViewHierarchy.h 7957: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKCoreKit/FBSDKViewImpressionTracker.h 7958: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKCoreKit/FBSDKWebDialog.h 7959: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKCoreKit/FBSDKWebDialogView.h 7960: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKCoreKit/FBSDKWebViewAppLinkResolver.h 7961: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKLoginKit/_FBSDKLoginRecoveryAttempter.h 7962: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKLoginKit/FBSDKDeviceLoginCodeInfo+Internal.h 7963: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKLoginKit/FBSDKDeviceLoginCodeInfo.h 7964: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKLoginKit/FBSDKDeviceLoginManager.h 7965: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKLoginKit/FBSDKDeviceLoginManagerResult+Internal.h 7966: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKLoginKit/FBSDKDeviceLoginManagerResult.h 7967: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKLoginKit/FBSDKLoginButton.h 7968: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKLoginKit/FBSDKLoginCompletion+Internal.h 7969: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKLoginKit/FBSDKLoginCompletion.h 7970: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKLoginKit/FBSDKLoginConstants.h 7971: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKLoginKit/FBSDKLoginKit+Internal.h 7972: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKLoginKit/FBSDKLoginKit.h 7973: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKLoginKit/FBSDKLoginManager+Internal.h 7974: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKLoginKit/FBSDKLoginManager.h 7975: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKLoginKit/FBSDKLoginManagerLogger.h 7976: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKLoginKit/FBSDKLoginManagerLoginResult+Internal.h 7977: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKLoginKit/FBSDKLoginManagerLoginResult.h 7978: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKLoginKit/FBSDKLoginTooltipView.h 7979: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKLoginKit/FBSDKLoginUtility.h 7980: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKLoginKit/FBSDKTooltipView.h 7981: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKShareKit/FBSDKShareKit/FBSDKAppGroupContent.h 7982: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKShareKit/FBSDKShareKit/FBSDKAppInviteContent.h 7983: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKShareKit/FBSDKShareKit/FBSDKCameraEffectArguments+Internal.h 7984: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKShareKit/FBSDKShareKit/FBSDKCameraEffectArguments.h 7985: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKShareKit/FBSDKShareKit/FBSDKCameraEffectTextures+Internal.h 7986: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKShareKit/FBSDKShareKit/FBSDKCameraEffectTextures.h 7987: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKShareKit/FBSDKShareKit/FBSDKCheckmarkIcon.h 7988: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKShareKit/FBSDKShareKit/FBSDKGameRequestContent.h 7989: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKShareKit/FBSDKShareKit/FBSDKGameRequestDialog.h 7990: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKShareKit/FBSDKShareKit/FBSDKGameRequestFrictionlessRecipientCache.h 7991: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKShareKit/FBSDKShareKit/FBSDKHashtag.h 7992: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKShareKit/FBSDKShareKit/FBSDKLikeActionController.h 7993: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKShareKit/FBSDKShareKit/FBSDKLikeActionControllerCache.h 7994: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKShareKit/FBSDKShareKit/FBSDKLikeBoxBorderView.h 7995: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKShareKit/FBSDKShareKit/FBSDKLikeBoxView.h 7996: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKShareKit/FBSDKShareKit/FBSDKLikeButton+Internal.h 7997: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKShareKit/FBSDKShareKit/FBSDKLikeButtonPopWAV.h 7998: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKShareKit/FBSDKShareKit/FBSDKLikeDialog.h 7999: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKShareKit/FBSDKShareKit/FBSDKLikeObjectType.h 8000: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKShareKit/FBSDKShareKit/FBSDKLiking.h 8001: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKShareKit/FBSDKShareKit/FBSDKMessageDialog.h 8002: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKShareKit/FBSDKShareKit/FBSDKMessengerIcon.h 8003: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKShareKit/FBSDKShareKit/FBSDKSendButton.h 8004: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKShareKit/FBSDKShareKit/FBSDKShareAPI.h 8005: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKShareKit/FBSDKShareKit/FBSDKShareButton.h 8006: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKShareKit/FBSDKShareKit/FBSDKShareCameraEffectContent.h 8007: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKShareKit/FBSDKShareKit/FBSDKShareConstants.h 8008: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKShareKit/FBSDKShareKit/FBSDKShareDefines.h 8009: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKShareKit/FBSDKShareKit/FBSDKShareDialog.h 8010: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKShareKit/FBSDKShareKit/FBSDKShareDialogMode.h 8011: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKShareKit/FBSDKShareKit/FBSDKShareExtension.h 8012: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKShareKit/FBSDKShareKit/FBSDKShareKit+Internal.h 8013: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKShareKit/FBSDKShareKit/FBSDKShareKit.h 8014: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKShareKit/FBSDKShareKit/FBSDKShareLinkContent.h 8015: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKShareKit/FBSDKShareKit/FBSDKShareMediaContent.h 8016: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKShareKit/FBSDKShareKit/FBSDKShareMessengerActionButton.h 8017: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKShareKit/FBSDKShareKit/FBSDKShareMessengerContentUtility.h 8018: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKShareKit/FBSDKShareKit/FBSDKShareMessengerGenericTemplateContent.h 8019: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKShareKit/FBSDKShareKit/FBSDKShareMessengerGenericTemplateElement.h 8020: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKShareKit/FBSDKShareKit/FBSDKShareMessengerMediaTemplateContent.h 8021: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKShareKit/FBSDKShareKit/FBSDKShareMessengerOpenGraphMusicTemplateContent.h 8022: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKShareKit/FBSDKShareKit/FBSDKShareMessengerURLActionButton.h 8023: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKShareKit/FBSDKShareKit/FBSDKShareOpenGraphAction.h 8024: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKShareKit/FBSDKShareKit/FBSDKShareOpenGraphContent.h 8025: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKShareKit/FBSDKShareKit/FBSDKShareOpenGraphObject.h 8026: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKShareKit/FBSDKShareKit/FBSDKShareOpenGraphValueContainer+Internal.h 8027: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKShareKit/FBSDKShareKit/FBSDKShareOpenGraphValueContainer.h 8028: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKShareKit/FBSDKShareKit/FBSDKSharePhoto.h 8029: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKShareKit/FBSDKShareKit/FBSDKSharePhotoContent.h 8030: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKShareKit/FBSDKShareKit/FBSDKShareUtility.h 8031: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKShareKit/FBSDKShareKit/FBSDKShareVideo.h 8032: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKShareKit/FBSDKShareKit/FBSDKShareVideoContent.h 8033: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKShareKit/FBSDKShareKit/FBSDKSharing.h 8034: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKShareKit/FBSDKShareKit/FBSDKSharingButton.h 8035: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKShareKit/FBSDKShareKit/FBSDKSharingContent.h 8036: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKShareKit/FBSDKShareKit/FBSDKSharingScheme.h 8037: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKShareKit/FBSDKShareKit/FBSDKSharingValidation.h 8038: [Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/gamewolfinc.testslots.release_ios/temp.XXXXXX20190724-5523-a8vk8x/Pods/Headers/Private/FBSDKShareKit/FBSDKShareKit/FBSDKVideoUploader.h

there are all error log in my cloudbuild , I not found a way to use Cocoapods wiith CloudBuild I dont have mac ,so only way I build ios is cloudbuild now , facebook sdk not work

Biodam commented 5 years ago

Hello, I'm having the same many errors like:

[Unity] Error (Not a directory) ...

The suggests solution from @fmoyano didn't work for me.

If you mean the compilation problem that I described above, I added a [PostProcessBuild] attribute with the following code (actually the commented part I think it's not necessary, but if it fails, uncomment it):

var targetName = PBXProject.GetUnityTargetName();
var proj_path = PBXProject.GetPBXProjectPath(xcodeProjectPath);
var proj = new PBXProject();
proj.ReadFromFile(proj_path);

var mainTarget = proj.TargetGuidByName(targetName);
proj.SetBuildProperty(mainTarget, "GCC_C_LANGUAGE_STANDARD", "gnu99");
proj.AddBuildProperty(mainTarget, "GCC_ENABLE_ASM_KEYWORD", "YES");
proj.AddBuildProperty(mainTarget, "GCC_NO_COMMON_BLOCKS", "NO");

/*var releaseBuildConfig = proj.BuildConfigByName(mainTarget, "Release");
var debugBuildConfig = proj.BuildConfigByName(mainTarget, "Debug");
proj.SetBuildPropertyForConfig(releaseBuildConfig, "GCC_C_LANGUAGE_STANDARD", "gnu99");
proj.AddBuildPropertyForConfig(releaseBuildConfig, "GCC_ENABLE_ASM_KEYWORD", "YES");
proj.AddBuildPropertyForConfig(releaseBuildConfig, "GCC_NO_COMMON_BLOCKS", "NO"); 
proj.SetBuildPropertyForConfig(debugBuildConfig, "GCC_C_LANGUAGE_STANDARD", "gnu99");
proj.AddBuildPropertyForConfig(debugBuildConfig, "GCC_ENABLE_ASM_KEYWORD", "YES");
proj.AddBuildPropertyForConfig(debugBuildConfig, "GCC_NO_COMMON_BLOCKS", "NO");*/

File.WriteAllText(proj_path, proj.WriteToString());

The linker problem with Wwise (which for some reason only occurs from Facebook SDK 7.16.x onwards), is a different story and here you can see more details).

I'm not able to build it on Cloud Build and on my local Mac it gives a different error: FBSDKSharekit.h not found

Also, I couldn't find how to "add Cocoapods to the Xcode workspace" to Cloud Build. Following what was said here Unity Cloud Build should have support for CocoaPods

CocoaPods is now installed on the Cloud Build build agents, we simply run "pod install" to install the dependencies before building the IPA file in Xcode.

But I'm not sure how to test this and how it could help.

Any help is appreciated

Unity: 2018.4.0f1 Facebook SDK: 7.17.2 XCode: 10.0

KylinChang commented 5 years ago

Hey @TWBestATM @Biodam , if you have exported the project to xcode project, then it will automatically generate Podfile for you and you simply run pod install under your project. Finally, you open xcworkspace with Xcode and run the code.

Biodam commented 5 years ago

Thanks for the response @KylinChang , but supposedly the Unity Cloud Build should be running pod install as mentioned on Unity Forums, so I don't know what is happening and the error logs are just that bunch of [Unity] Error (Not a directory) ... that doesn't help that much.

Elegarret commented 5 years ago

If you mean the compilation problem that I described above, I added a [PostProcessBuild] attribute with the following code (actually the commented part I think it's not necessary, but if it fails, uncomment it):

Hey @fmoyano would you please tell where to add your code? I have the same issue and I'm quite unfamiliar with all these postprocessing things..

Biodam commented 5 years ago

Hey, @Elegarret he was referring to this, basically, you create an Editor folder and place a script inside of it that has a static method with [PostProcessBuild] attribute above of its declaration. Note that if you are using Assembly Definitions files you'll need to create an Assembly Definition targeted at only Editor. You can take a look at this link as well, as it explains how the Pre- and Post-Export methods works on Unity Cloud build.

Are you having this problem locally or on Unity Cloud Build as well? I was not able to solve it yet. Please give us some feedback if you are able to solve it.

fmoyano commented 5 years ago

Hey @Elegarret I did exactly as @Biodam explained, and at least the compilation errors I was experiencing disappeared.

I must add to this thread that I was unable to build successfully with Cloud Build because I use a plugin (the Wwise plugin) filled with EDITOR directives (e.g. UNITY_EDITOR), and this issue seems problematic in Cloud Build.

So I changed to build locally and it worked, but only when adding Cocoapods to the workspace from the Play Services Resolver > iOS Resolver > Settings menu. When opening the Xcode workspace I noticed that the Pods project (project created with the pods of the project, which includes the Facebook SDK) was configured to use the gnu11 compiler dialect and therefore the compilation problems I originally had were gone (as expected).

ICoso commented 5 years ago

Same cloud build problem here (after using v7.17.1 FB sdk) PostProcessBuild solution didn't work for me, these errors didn't disappear:

[Unity] Error (Not a directory) ...

I already had "Cocoapods added to workspace" set

So I changed to build locally and it worked, but only when adding Cocoapods to the workspace from the Play Services Resolver > iOS Resolver > Settings menu.

local builds worked fine, but cloud ones are still retrieving the commented error :(

briantrpz commented 5 years ago

Hello, I'm also having build failures in Unity Cloud Build after updating to Facebook SDK v7.17.2. Local builds work fine but my cloud builds fail. I'm using Xcode 10.2 both locally and for Cloud builds. Here are the errors:

/BUILD_PATH/trpz.jellygarden.ios-dev/temp.XXXXXX20190829-5363-vobe6r/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/FBSDKAppEvents.m:374:17: expected ';' after expression 45617: typeof(self) __weak weakSelf = self;

/BUILD_PATH/trpz.jellygarden.ios-dev/temp.XXXXXX20190829-5363-vobe6r/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/AppEvents/FBSDKAppEvents.m:377:60: bad receiver type 'int' 45626: [weakSelf flushTimerFired:nil];

Anybody else make any progress on getting Unity Cloud Builds to work with newer Facebook SDK? -Brian

Nesh108 commented 5 years ago

Same problem. Tried pretty much every solution I could find, still the same 🤔 Any help is super appreciated!

Elegarret commented 5 years ago

It seems that both FB and Unity simply ignore this problem. It persists through several last versions... I eventually rolled back to FB v 7.13 which had not this problem and still works ok for UA and analytics

пт, 13 сент. 2019 г. в 18:18, Nesh108 notifications@github.com:

Same problem. Tried pretty much every solution I could find, still the same 🤔 Any help is super appreciated!

— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub https://github.com/facebook/facebook-sdk-for-unity/issues/287?email_source=notifications&email_token=ABWOPF4FHR5DZVXFVHHVQ4TQJOVMVA5CNFSM4IE2NGUKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD6VK4QA#issuecomment-531279424, or mute the thread https://github.com/notifications/unsubscribe-auth/ABWOPF7ZYZRT4PONFPQKWG3QJOVMVANCNFSM4IE2NGUA .

briantrpz commented 5 years ago

Hi guys,

Facebook released a fix to the FBSDKCoreKit library for this compile issue. I just changed my Dependencies.xml file to specify version 5.5 for CoreKit, LoginKit and ShareKit and everything compiled and ran just fine both locally and with Unity Cloud builds.

You can see the commit on August 23rd to CoreKit with the fix: https://github.com/facebook/facebook-objc-sdk/commits/master/FBSDKCoreKit

vfilho commented 4 years ago

Hi guys,

Facebook released a fix to the FBSDKCoreKit library for this compile issue. I just changed my Dependencies.xml file to specify version 5.5 for CoreKit, LoginKit and ShareKit and everything compiled and ran just fine both locally and with Unity Cloud builds.

You can see the commit on August 23rd to CoreKit with the fix: https://github.com/facebook/facebook-objc-sdk/commits/master/FBSDKCoreKit

This didn't work on Unity Cloud Build. :(

mFontoura commented 4 years ago

Why is this closed? It's mid November and there is no update yet.

What can be done? Is this the solution for now?

Biodam commented 4 years ago

I downgraded it to 7.12.0, just to let you know

mFontoura commented 4 years ago

@Biodam why such an old version?

Elegarret commented 4 years ago

@mFontoura @Biodam 7.13 is the last one which works. Newer don't builds with Cloud Build. All fixes mentioned here don't work. It seems that neither FB nor Unity cares about that, what a shame...

Biodam commented 4 years ago

@mFontoura It was the one that my friend got to work, so I just went with that

mFontoura commented 4 years ago

tried both and I still get "[Unity] Error (Not a directory) occured whilst enumerating /BUILD_PATH/... .../temp20191122-5279-18788zu/Pods/Headers/Public/FBSDKCoreKit/FBSDKWebViewAppLinkResolver.h" and about 200 more of lines like this....

Biodam commented 4 years ago

🤔 Did you do a clean build after downgrading?

I did this downgraded a little while ago, so I'm not really sure if I did some specific thing while downgrading.

VergilUa commented 4 years ago

+1 Cannot build on 2019.2.x latest + 7.17.2 or 7.18.x. Gets a bunch of these: /Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal_NoARC/FBSDKDynamicFrameworkLoader.m:238:3: cannot create __weak reference in file using manual reference counting

mFontoura commented 4 years ago

Thanks @Biodam and @Elegarret just had to delete the SDK completely before adding the 7.13 version. Thank for the help.

Really strange how this is a problem for so long

VergilUa commented 4 years ago

Thanks @Biodam and @Elegarret just had to delete the SDK completely before adding the 7.13 version. Thank for the help.

Really strange how this is a problem for so long

Its an issue with the dependencies.xml; See this https://github.com/facebook/facebook-sdk-for-unity/issues/358 for the fix

TL;DR: Increment versions in the dependencies.xml from 5.2 to 5.8

kamal1203 commented 3 years ago

I am still having this issue with the Facebook SDK 9.0 version. How come this is still not fixed two years later??