• Windows 7
• Builder 3.35.4
• iOS SDK 14.1
I'm trying to integrate Firebase Cloud Messaging and Google Admob into my project. I did as explained in the troubleshooting file and configured my extra frameworks as follows:
% -F"C:/Users/nuninho/Desktop/Firebase/FirebaseAnalytics/FirebaseAnalytics.xcframework/ios-arm64_armv7" -F"C:/Users/nuninho/Desktop/Firebase/FirebaseAnalytics/FirebaseCore.xcframework/ios-arm64_armv7" -F"C:/Users/nuninho/Desktop/Firebase/FirebaseAnalytics/GoogleAppMeasurement.xcframework/ios-arm64_armv7" -F"C:/Users/nuninho/Desktop/Firebase/FirebaseAnalytics/GoogleUtilities.xcframework/ios-arm64_x86_64-maccatalyst" -F"C:/Users/nuninho/Desktop/Firebase/FirebaseAnalytics/nanopb.xcframework/ios-arm64_x86_64-maccatalyst" -F"C:/Users/nuninho/Desktop/Firebase/FirebaseAnalytics/PromisesObjC.xcframework/ios-arm64_armv7" -F"C:/Users/nuninho/Desktop/Firebase/FirebaseMessaging/FirebaseMessaging.xcframework/ios-arm64_x86_64-maccatalyst" -F"C:/Users/nuninho/Desktop/Firebase/Google-Mobile-Ads-SDK/GoogleMobileAds.xcframework/ios-arm64_armv7" -F"C:/Users/nuninho/Desktop/Firebase/Google-Mobile-Ads-SDK/UserMessagingPlatform.xcframework/ios-arm64_armv7" -F"C:/Users/nuninho/Desktop/Firebase/FirebaseAnalytics" -F"C:/Users/nuninho/Desktop/Firebase/FirebaseMessaging" -F"C:/Users/nuninho/Desktop/Firebase/Google-Mobile-Ads-SDK" -framework FirebaseMessaging -framework FirebaseAnalytics -framework FirebaseCore -framework GoogleMobileAds -framework JavaScriptCore -framework MediaPlayer -framework MessageUI -framework MobileCoreServices -framework SafariServices -framework WebKit -framework UserMessagingPlatform -framework GoogleAppMeasurement -framework GoogleUtilities -framework nanopb -framework PromisesObjC -lc++ -lsqlite3 -lz -ObjC %
The project compiles and I can run the game correctly, except the Firebase library fails to start. I get a lot of message like it
% Aug 31 00:54:20.749 RemoteConsole <stderr>: objc[2582]: Class FIRAAdExposureReporter is implemented in both /private/var/containers/Bundle/Application/B7AF9DD0-5646-4675-8FDC-2FA5EA959BDA/VemGuarnic.app/VemGuarnic (0x1011d6820) and /private/var/containers/Bundle/Application/B7AF9DD0-5646-4675-8FDC-2FA5EA959BDA/VemGuarnic.app/Frameworks/UnityFramework.framework/UnityFramework (0x104e3f3d8). One of the two will be used. Which one is undefined. ... Aug 31 00:54:20.751 RemoteConsole <stderr>: objc[2582]: Class FIRAConditionalUserProperty is implemented in both /private/var/containers/Bundle/Application/B7AF9DD0-5646-4675-8FDC-2FA5EA959BDA/VemGuarnic.app/VemGuarnic (0x1011d6870) and /private/var/containers/Bundle/Application/B7AF9DD0-5646-4675-8FDC-2FA5EA959BDA/VemGuarnic.app/Frameworks/UnityFramework.framework/UnityFramework (0x104e3f428). One of the two will be used. Which one is undefined. %
And finally Firebase crash and cant start.
% Aug 31 00:54:27.002 RemoteConsole <stderr>: 2021-08-31 00:54:24.145 VemGuarnic[2582:768271] ERROR: Unable to configure Firebase app (The default FirebaseApp instance must be configured before the defaultFirebaseApp instance can be initialized. One way to ensure this is to call `FirebaseApp.configure()` in the App Delegate's `application(_:didFinishLaunchingWithOptions:)` (or the `@main` struct's initializer in SwiftUI).) Aug 31 00:54:27.013 RemoteConsole <stdout>: InitializationException: Firebase app creation failed. Aug 31 00:54:27.013 RemoteConsole <stdout>: at Firebase.FirebaseApp.CreateAndTrack (Firebase.FirebaseApp+CreateDelegate createDelegate, Firebase.FirebaseApp existingProxy) [0x00000] in <00000000000000000000000000000000>:0 Aug 31 00:54:27.013 RemoteConsole <stderr>: at Firebase.FirebaseApp.CreateAndTrack (Firebase.FirebaseApp+CreateDelegate createDelegate, Firebase.FirebaseApp existingProxy) [0x00000] in <00000000000000000000000000000000>:0 %
Apparently it was as if two libraries were linked in the project, so searching the internet, I found that Firebase is now linking its library as dynamic.
https://github.com/firebase/firebase-ios-sdk/blob/master/docs/firebase_in_libraries.md
https://firebase.google.com/docs/ios/link-firebase-static-dynamic
I don't know how to solve my problem. I've tried everything and used all my knowledge to solve the problem, but apparently i'm limited. This way, I would like to know how I can build Firebase statically into the project without using CocoaPod. Are there some option to achieve this at builder UI or some compiler or linker flag that i can use?
PS: I tested both Firebase 7.2 and 8.1 (unity-sdk and ios-sdk) and problem remains.
:: @OpsGameStudio added on 01 Sep ’21 · 21:31
I'm using Windows 10, not Windows 7, sorry.