"library not found for -lGoogleToolboxForMac"

Hello,
I have added Firebase Analytics into my project.
Android - local and Unity Cloud Build : OK
iOS - local Xcode : OK

only iOS in Unity Cloud Build we have some problems about GoogleToolBox:

7690: [xcode] ld: library not found for -lGoogleToolboxForMac
7691: [xcode] clang: error: linker command failed with exit code 1 (use -v to see invocation)

i have tried a lot of suggestions, links, PostBuildProcessor.cs changes like

proj.AddBuildProperty (target, “OTHER_LDFLAGS”, “-ObjC”);

var frameworks = new List()
{
“AdSupport.framework”,
“CoreData.framework”,
“SystemConfiguration.framework”,
“GoogleToolboxForMac.framework”,
“libz.dylib”,
“libsqlite3.dylib”,
“libApp.a”,
“libAnalytics.a”
};

, and no success.

any more suggestions ?
Thanks!

Did you ever solve this, @VoxStudio ?

Not yet!

Isn’t this part of the issues with CocoaPods support on cloud build? I recall Firebase is using this to resolve its dependencies, which is currently not supported on Cloud build from what i know.

Ya looks like it relies on cocoapods. Unity Cloud build currently doesn’t support cocoapods (but we’re working on it and hope to have that ready soon).