iOS Build Environment Help Center

Build Firebase Library static without CocoaPods

append delete OpsGameStudio

• 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.

Reply RSS

Replies

append delete #1. Pierre-Marie Baty

Hello

I'm not convinced the linker warnings you get are the cause of the crash, though I may be mistaken. It rather looks like to me an incomplete Firebase configuration (missing plist for example).

Please update your builder to the latest version first.

Then, checklist:
- Is the GoogleService-Info.plist file present in your app and correctly filled ?
- Have you added the -ObjC linker flag as instructed by Google ?
- Does the Firebase SDK version you use match the one required by your Unity plugin ?

Also, have you read https://www.pmbaty.com/iosbuildenv/help/thread.php?path=Problem%20solving/&file=how-to-build-admob-google-mobile-ads-sdk-projects-without-cocoapods ?

Let me know if you need more help.

append delete #2. OpsGameStudio

Hi Pierre,

I checked all that things before come to forum :( But let's go:

1. Yeah, i dowloaded the GoogleService-Info.plist from firebase console and put on my unity asset folder (root). I can see the file both on unity project and xcode project generated root folder .
2. Yes, i put my exact command on my original message above.
3. Yes, I download the lastest version and match unity version by these links:

Unity SDK: https://firebase.google.com/download/unity?authuser=0 (when i downloaded, i got firebase_unity_sdk_8.1.0.zip)
iOS SDK: https://github.com/firebase/firebase-ios-sdk/releases/tag/8.1.0

I check the README.md on both files and i can see Firebase libraries at 8.1 at all.

I'm going to update the builder to the lastest version.

append delete #3. OpsGameStudio

I updated to builder 3.36.1.

I'm building with this configuration:

https://pasteboard.co/KiB484a.png

My extra compiler and linkers flags setting:

https://pastebin.pl/view/552e1b84

Same error.

A lot of:

%
Sep 01 11:23:12.102 RemoteConsole <stderr>: objc[3024]: Class PodsDummy_FirebaseMessaging is implemented in both /private/var/containers/Bundle/Application/A0FCBEA2-7104-461A-9172-AA783038AC54/VemGuarnic.app/VemGuarnic (0x1009518f0) and /private/var/containers/Bundle/Application/A0FCBEA2-7104-461A-9172-AA783038AC54/VemGuarnic.app/Frameworks/UnityFramework.framework/UnityFramework (0x10460fae8). One of the two will be used. Which one is undefined.
...
Sep 01 11:23:12.108 RemoteConsole <stderr>: objc[3024]: Class FIRMessagingMessageInfo is implemented in both /private/var/containers/Bundle/Application/A0FCBEA2-7104-461A-9172-AA783038AC54/VemGuarnic.app/VemGuarnic (0x100951918) and /private/var/containers/Bundle/Application/A0FCBEA2-7104-461A-9172-AA783038AC54/VemGuarnic.app/Frameworks/UnityFramework.framework/UnityFramework (0x10460fb10). One of the two will be used. Which one is undefined.
%

And finally:

%
Sep 01 11:23:17.966 RemoteConsole <stdout>: InitializationException:  Firebase app creation failed.
Sep 01 11:23:17.966 RemoteConsole <stdout>:  at Firebase.FirebaseApp.CreateAndTrack (Firebase.FirebaseApp+CreateDelegate createDelegate, Firebase.FirebaseApp existingProxy) [0x00000] in <00000000000000000000000000000000>:0 
Sep 01 11:23:17.966 RemoteConsole <stdout>:   at Firebase.Messaging.FirebaseMessaging+Listener..ctor () [0x00000] in <00000000000000000000000000000000>:0 
Sep 01 11:23:17.966 RemoteConsole <stderr>: 2021-09-01 11:23:16.528 VemGuarnic[3024:1023124] InitializationException: Firebase app creation failed.
%

On this github link, Firebase team talk about this problem and and show a fix to Cocoapod (adding "use_frameworks! :linkage => :static" )

https://github.com/firebase/firebase-ios-sdk/blob/master/docs/firebase_in_libraries.md

Are there some way to i achieve this same solution without cocoapod on ios Builder Environment?

append delete #4. OpsGameStudio

I did another test and downloaded iOS SDK 8.3.0 (https://github.com/firebase/firebase-ios-sdk/releases/tag/8.3.0) because i saw this version mentioned on my Podfile.bak (since that i'm compiling without cocoapod, i was ignoring this file).

So i builded and deployed, and same error showing at remote debug console. I cant figure out this problem :(

My Podfile.bak:

%
source 'https://github.com/CocoaPods/Specs.git'
source 'https://github.com/CocoaPods/Specs'
platform :ios, '11.0'

target 'UnityFramework' do
  pod 'Firebase/Analytics', '8.3.0'
  pod 'Firebase/Core', '8.3.0'
  pod 'Firebase/Messaging', '8.3.0'
  pod 'Google-Mobile-Ads-SDK', '~> 8.2'
end
target 'Unity-iPhone' do
end
use_frameworks! :linkage => :static
%
append delete #5. Pierre-Marie Baty

Sorry for the checklist, you did provide most of the information, there was a formatting problem with the page and I believe I read too fast.

The Firebase binary frameworks that you downloaded from Google are either statically or dynamically compiled ; you can't transform a statically compiled binary framework into a dynamically compiled one and vice versa without recompiling it from source, which is what you're trying to avoid.

Your Podfile indicates you need Firebase 8.3.0, so you need to download that one. But it also indicates that you need Google Mobile Ads SDK 8.2, which according to this table https://www.pmbaty.com/iosbuildenv/help/thread.php?path=Problem%20solving/&file=firebase-google-mobile-ads-admob-version-matching-table corresponds to ... Firebase 7.9. That's not the same major version number. Are you sure these two plugins are compatible ?

In my opinion, you should either upgrade your AdMob plugin so that it uses Firebase 8.x, or downgrade your Cloud Messaging plugin so that it uses Firebase 7.x.

Do you have the possibility to verify if this app works correctly when built with Xcode? That would confirm (or infirm) the diagnostic.

:: @Pierre-Marie Baty added on 01 Sep ’21 · 15:48

you can't transform a statically compiled binary framework into a dynamically compiled one and vice versa

Correcting myself, because the above phrase makes no sense when I read it to the letter: I meant "you can't transform a binary framework *compiled as a static library* into a binary framework *compiled as a dynamically-loadable one*". I hope it's more clear.

append delete #6. OpsGameStudio

Hi again,

I did another test:

1. I deleted all Firebase and Google Admob files from my Unity Project.
2. So, i decided import just Google Admob to this attempt. I downloaded Google Mobile Ads Unity Plugin v6.0.2 (https://github.com/googleads/googleads-mobile-unity/releases/tag/v6.0.2) because it uses Ads-SDK 8.2.0.
3. I downloaded Firebase iOS SDK 7.9.0 (https://github.com/firebase/firebase-ios-sdk/releases/tag/7.9.0) based on your table (https://www.pmbaty.com/iosbuildenv/help/thread.php?path=Problem%20solving/&file=firebase-google-mobile-ads-admob-version-matching-table).
4. I builded XCode Project from Unity Project.
5. The Podfile generated was renamed to Podfile.bak and here is its content:

%
source 'https://github.com/CocoaPods/Specs'
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '11.0'

target 'UnityFramework' do
  pod 'Google-Mobile-Ads-SDK', '~> 8.2'
end
target 'Unity-iPhone' do
end
use_frameworks! :linkage => :static

%

5. I turn off Windows Realtime Protection, Firewall and any thing thats meaning "protection" from my computer.
6. I configured my iOS Builder like this:

https://pasteboard.co/KiDzF5R.png

https://pastebin.pl/view/36e774ce

7. Compiled and deployed sucessfully.
8. I tested at my device and same problem:

A lot of:

%
Sep 01 17:30:42.700 RemoteConsole <stderr>: objc[3135]: Class GADGestureIdUtil is implemented in both /private/var/containers/Bundle/Application/DD92A770-C081-41B8-9F04-919181ACB804/VemGuarnic.app/VemGuarnic (0x104a08130) and /private/var/containers/Bundle/Application/DD92A770-C081-41B8-9F04-919181ACB804/VemGuarnic.app/Frameworks/UnityFramework.framework/UnityFramework (0x1083ee958). One of the two will be used. Which one is undefined.
...
Sep 01 17:30:42.721 RemoteConsole <stderr>: objc[3135]: Class GADGestureRecognizer is implemented in both /private/var/containers/Bundle/Application/DD92A770-C081-41B8-9F04-919181ACB804/VemGuarnic.app/VemGuarnic (0x104a08180) and /private/var/containers/Bundle/Application/DD92A770-C081-41B8-9F04-919181ACB804/VemGuarnic.app/Frameworks/UnityFramework.framework/UnityFramework (0x1083ee9a8). One of the two will be used. Which one is undefined.
Sep 01 17:30:42.721 RemoteConsole <stderr>: objc[3135]: Class GADMRAIDActionMonitor is implemented in both /private/var/containers/Bundle/Application/DD92A770-C081-41B8-9F04-919181ACB804/VemGuarnic.app/VemGuarnic (0x104a081d0) and /private/var/containers/Bundle/Application/DD92A770-C081-41B8-9F04-919181ACB804/VemGuarnic.app/Frameworks/UnityFramework.framework/UnityFramework (0x1083ee9f8). One of the two will be used. Which one is undefined.
%

But this time, since i didn't configure Firebase, so i didnt get "Firebase cant start" message.

I got this message too:

Sep 01 17:53:41.236 RemoteConsole <stderr>: 2021-09-01 17:53:39.170 VemGuarnic[3149:1087849] <Google> <Google:HTML> You are currently using version 8.2.0 of the SDK. Please consider updating your SDK to the most recent SDK version (8.9.0) to get the latest features and bug fixes. The latest SDK can be downloaded from https://goo.gl/UoiJ8F. A full list of release notes is available at https://developers.google.com/admob/ios/rel-notes.

:: @OpsGameStudio added on 01 Sep ’21 · 21:30

By the way, i have a version from this game running on Android (and published on Google Play Store) (saving the changes made to compile this version for ios).

append delete #7. Pierre-Marie Baty

It hints to say that the official AdMob Unity plugin for iOS hasn't been updated in a loooong while...

Ignore the message that invites you to download a newer version. The first thing to do is to make it work with the exact version numbers specified. Does it run when you configure Firebase ?

append delete #8. OpsGameStudio

Coming back to give feedback on my issue. I did all the tests and read every "How To" I could, and as I'm getting the same error with Admob besides Firebase (having two linked libraries "One of the two will be used. Which one is undefined."), I gave up on compiling my project with these two libraries. I need to release the game by the end of the month, so I should try again later. If I have any promised results, I'll let you know here.

append delete #9. Pierre-Marie Baty

OK. Let me know when you're ready to give this a try again.

I see you're on a rush, yet solving problems requires method, so make sure you have enough time to proceed calmly so as to follow my guidelines and report back and there's no reason it can't be sorted out.

append delete #10. Darth Vader2

I have tried many times to get Firebase (Analytics + Messaging (Push notification)) working by including their frameworks, sadly I was never successful, always got InitializationException: Firebase app creation failed.
Firebase is my only failed framework attempt to get working without pods.
Gave up and just using their pods now

append delete #11. Pierre-Marie Baty

Interesting. I wonder if a project built with Xcode using the same precompiled frameworks exhibits the same behavior. If it's the case, it would mean something is broken in Google's binary releases of Firebase.

If anyone else is having the same problem, that's something to try. If it works with Xcode (using the Firebase precompiled frameworks, i.e. not CocoaPods) and not with the builder it'd mean I have something to fix. If it doesn't, then I guess a problem report should be sent to the Firebase repository managers.

append delete #12. billygunn

I have run into the exact same issue as Darth Vader 2. I have followed all the instructions correctly and I always end up with the same 2 errors,

InitializationException: Firebase app creation failed
Unable to configure Firebase app

@Pierre-Marie Baty - Any chance you can test my project using an Xcode build so that we can understand whether this is an iOS Builder issue? I can share it to your email ID.

append delete #13. Pierre-Marie Baty

Please provide the necessary information as requested in the "problem solving" forum welcome text.

append delete #14. billygunn

Sorry, I missed that. Please find the details below,

• Windows version: 10
• Builder version: 3.43
• iOS SDK version : 14.4

I am trying to integrate Firebase Push Notifications into my app. To test this feature exclusively, I created a new Unity project and added the "Firebase Messaging 8.7.0" unity package into my app and set it up for Android and it works perfectly. I set it up also for iOS using exactly all the steps mentioned in the documentation.

The frameworks were added manually and I ensured that the version number matches the requirement from the Podfile. The two linked frameworks are,

pod 'Firebase/Core', '8.10.0'
pod 'Firebase/Messaging', '8.10.0'

I have added the -ObjC linker flag and double checked whether the GoogleService-Info.plist is present as well.

However, I get the following 2 errors in the app when I run it on iOS,

InitializationException: Firebase app creation failed
Unable to configure Firebase app

Please let me know if you need any more info.

append delete #15. Pierre-Marie Baty

I assume your GoogleService-Info.plist is correctly filled.

Are there other messages ? Can you post the logs on Pastebin ?

append delete #16. billygunn

Yes, it is. I even double checked if it getting added to the Xcode project after Unity builds it. However, if you think there is anything specific that I have to look out for, please let me know.

Just to clarify post #10 from Darth Vader2 - Is he implying that the Firebase initialization worked after using the Coca pods tool? I guess he cannot be notified on this forum to confirm it.

Logs below,

https://pastebin.pl/view/6bc555b5

append delete #17. Pierre-Marie Baty

In these logs I see

%
Jan 19 13:14:00.831 RemoteConsole <stderr>: 2022-01-19 13:14:01.094 NotificationsTest1[385:17957] ERROR: Unable to configure Firebase app (+[FIRInstanceIDCheckinPreferences preferencesFromKeychainContents:]: unrecognized selector sent to class 0x106652190)
%

Such unrecognized selector errors mean that some Objective-C classes are missing from the binary, possibly stripped by the linker, which most often imply that these binaries were built without the -ObjC linker flag.

Are you sure you added that flag to the right target ?

append delete #18. billygunn

By target do you mean whether it is the MainApp or UnityFramework tab?

I have added -ObjC as the first item (followed by the frameworks) in the "Extra linker flags" field in the UnityFramework tab.

append delete #19. Pierre-Marie Baty

That's correct. Well, it's possible that these Firebase binaries were built by Google without that -ObjC flag then. At the moment I see no other explanation.

append delete #20. billygunn

Ok. That is bit of a dead end as I have already tried couple of different versions. To go back to post #10 from Darth Vader2 - Is he implying that the Firebase initialization worked after using the Coca pods tool?

Any chance I could test this with the Coca pods tool?

append delete #21. Pierre-Marie Baty

Another user seems to be having problems with AdMob and CocoaPods right now and we're on it: https://www.pmbaty.com/iosbuildenv/help/thread.php?path=Problem%20solving/&file=app-crashes-at-startup-when-using-admob

It might be related.

:: @Pierre-Marie Baty added on 19 Jan ’22 · 17:45

*edit* To answer your question, yes, that's what I understood. But that was his case. Things might be different for you (builder version, iOS SDK version, Firebase version...)

append delete #22. billygunn

I have sent you an email regarding testing my issue will Coca pods. Can you please check and let me know?

I will be happy to post the results of my tests in the forum.

append delete #23. billygunn

Tried building the project using the Coca pods tool and the app crashes even before it can send logs to the remote debug console.

I built the same project without the Firebase plugin and the app opens fine. So, it is something to do with the plugin and the way it is being built for iOS. Any suggestions on what can be done to debug this?

append delete #24. Pierre-Marie Baty

The reason of the crash has to be given in the iOS system logs. Can you catch them with the remote debug console and a USB cable and post them on PasteBin ?

append delete #25. billygunn

I have added the system logs in the link below from the point of opening the app to it crashing. Please let me know if the logs can be filtered better.

https://pastebin.pl/view/5fae4708

append delete #26. Pierre-Marie Baty

OK. It's quite clear. The process ID (PID) that crashed is 627, and its crash spawned a CrashReporter process at pid 628. When you highlight "627" in these logs you see what happens. The first error is here:

%
Jan 20 12:41:32.624 Bilals-iPhone-X SpringBoard(FrontBoard)[58]<Notice>: [application<com.EugeneGames.NotificationsTest>:627] Bootstrap success!

Jan 20 12:41:32.625 Bilals-iPhone-X runningboardd(Security)[29]<Notice>: Failed to get cs_flags, error=3

Jan 20 12:41:32.625 Bilals-iPhone-X SpringBoard(BaseBoard)[58]<Error>: Unable to get short BSD proc info for 627: No such process
%

It looks like a code signature format problem ("failed to get cs_flags"). I'd like to have a closer look at this project. Could you please send it to me so that I reproduce the problem ?

:: @Pierre-Marie Baty added on 20 Jan ’22 · 13:30

Wait, I am wrong. It's not a code signature *format* problem, it's a code *signature* problem. See:

%
Jan 20 12:41:32.599 Bilals-iPhone-X amfid(Security)[212]<Notice>: Trust evaluate failure: [leaf IssuerCommonName LeafMarkerOid SubjectCommonName]

Jan 20 12:41:32.600 Bilals-iPhone-X backboardd[62]<Notice>: new deferring rules for pid:58: (
  "{<environment=system> -> <pid=58 token=279e24c0> : 1-deferDiscrete: systemGestures}",
   "{<environment=keyboardFocus display=builtin> -> <pid=58 token=279e24c0> : 3-deferDiscrete: Key Window event focus deferral}",
  "{<environment=keyboardFocus display=builtin> -> <pid=58 token=9751770c> : 356-deferDiscrete: Key Window event focus deferral}"
)

Jan 20 12:41:32.602 Bilals-iPhone-X backboardd[62]<Notice>: new resolutions for pid:58 {(
  <display=null environment=system pid=58 token=279e24c0>,
   <display=builtin environment=keyboardFocus pid=58 token=9751770c>,
  <display=builtin environment=cameraButton pid=58>
)}
%

"Trust evaluate failure" means something's wrong with your certificate or provisioning profile.

append delete #27. Pierre-Marie Baty

Here's what happens:

1. You tap the icon
2. iOS notices that you tapped the icon and looks up which app it is for, then asks the security system to launch it and return a new process ID
3. The security subsystem checks for the code signature of that app, and finds a problem with your certificate. It immediately exits instead of yielding a process ID
4. iOS doesn't get the new process ID, thus a cascade of other errors, which translate into a flashing black screen that bombs you back to the phone's icon board.

%
Jan 20 12:41:32.529 Bilals-iPhone-X SpringBoard(SpringBoardHome)[58]<Notice>: Icon tapped: <private>

Jan 20 12:41:32.545 Bilals-iPhone-X SpringBoard(SpringBoard)[58]<Notice>: Activating <private> from icon

Jan 20 12:41:32.545 Bilals-iPhone-X trustd[124]<Notice>: cert[0]: SubjectCommonName =(leaf)[]> 0

Jan 20 12:41:32.552 Bilals-iPhone-X trustd[124]<Notice>: cert[0]: LeafMarkerOid =(leaf)[force]> 0

Jan 20 12:41:32.552 Bilals-iPhone-X trustd[124]<Notice>: cert[0]: IssuerCommonName =(path)[]> 0

Jan 20 12:41:32.555 Bilals-iPhone-X SpringBoard(Security)[58]<Notice>: Trust evaluate failure: [leaf IssuerCommonName LeafMarkerOid SubjectCommonName]
%

I advise you to check your signing certificate ; it's likely either revoked or expired.

append delete #28. billygunn

Thanks for going through the logs Pierre. I double checked my certificate and provisioning profile and they are all still valid. I was able to build the project and it ran fine on my iPhone without the Firebase plugin inside the project.

So, does it mean that something special is expected in the provisioning profile or certifcate if the Firebase plugin is included? I googled this and could not find anything in particular mentioned about this.

I will send you a link for Unity project as an email. Will be great if you can test this from your end.

append delete #29. Pierre-Marie Baty

Of course. The provisioning profile contains the app's entitlements (i.e. "Application Services" or "Capabilities"). The Google instructions tell you to add the "Push Notifications" capability to your provisioning profile. If you don't do that, the app won't launch.

:: @Pierre-Marie Baty added on 20 Jan ’22 · 14:48

Reminder: "Application services" / "Capabilities" / "Entitlements" (all three are more or less synonyms) are, technically, a list of properties (either in XML .plist format or in DER-encoded format) that are "stamped" in your app's binary at code signature time, covered with your certificate and signed with your private key. These capabilities become a read-only and non-modifiable list of authorizations that the app can claim after iOS.

If your app claims to be entitled to use Push Notifications, iOS will say: "okay, let me verify that you're indeed allowed to have that one" and look into its collection of provisioning profiles for the one that matches your app's bundle ID. When it finds it, it checks whether this authorization is present. If the provisioning profile (generated by Apple, remember) says "this app is allowed to have Push Notifications", it matches what the app claims, and iOS agrees. If there's a discrepancy, the app is killed even before it's started. That's how it works.

append delete #30. billygunn

I double checked my provisioning profile and it includes the Push Notifications capability. I noticed that I had to create a special certificate for Push Notifications (called APNs Development iOS) in the Identifiers section for my app. I created it and added it to the keychain and tried building it once more. However, the app still keeps crashing.

So, now we have 2 certificates that the app is using. One for the Push Notifications and the other for the Provisioning profile. Will that both be linked when the project is built?

append delete #31. Pierre-Marie Baty

I think you're confusing a lot of things related to code signing.

You did need to create a special *provisioning profile* in which the push notifications were listed as enabled for your app. During the creation of this provisioning profile you enlisted your code signing certificate, but that's typically the same code signing certificate as before. It's just that it's enlisted in a different profile. And yes, you need to sign your app using *that* profile.

Apps are signed with *one* certificate. The only case when you need a second one is when your app has an app extension (that is, a companion binary that runs in the background in iOS). This is not your case here.

The certificates you enlist in a provisioning profile are just the list of signing identities that are allowed to use that profile. For example, most people (including myself) enlist two certificates in each profile they create each time they can: their *development* certificate and their *production* certificate. That makes two certificates in one provisioning profile.

I invite you to read the parts of the documentation again that deal with certificates and profiles, slowly. But clearly, if you're doing things in a hurry, you should stick to the main road (i.e. Xcode) and come back to this alternate way of doing things when you have enough time to wrap your head around it without trying things that you only half understand (no offense intended but that's the feeling that I have).

append delete #32. billygunn

To be honest Pierre, I would not be going into all this hassle if I had access to Xcode. However, I could have understood things wrong as you said. So, I will try to explain what I have understood:

From my reading there are 2 certificates required for push notifications to work in an iOS app.

First Certificate - To sign the app
Second Certificate - SSL Certificate to allow push notifications

However, when I create a profile, I only have the abitlity to link the development or distribution certificate.

Now going to the iOS project builder, I thought it would be the case that since my provisioning profile knows that it requires push notifications which requires an SSL certificate, it will link it if it is present in the Keychain tool. That is why I asked you the question whether the 2 certificates will be linked once the app is built.

This is my understanding of the flow of how things would work. Please let me know if that is not the case.

append delete #33. Pierre-Marie Baty

Are you referring to this documentation ?

https://developer.apple.com/documentation/usernotifications/setting_up_a_remote_notification_server/establishing_a_certificate-based_connection_to_apns

Or if not, which one ?

:: @Pierre-Marie Baty added on 20 Jan ’22 · 17:11

I think I understand your misunderstanding. SSL certificates != code signing certificates.

Certificates can be used for a lot of things, and their usage (or more technically their usage restriction) is usually indicated by an object ID (OID) in them. OIDs are a series of numbers that have a universally-accepted meaning. For example, the OID for code signing Apple apps is "1.2.840.113635.100.6.1.13" (see http://oid-info.com/get/1.2.840.113635.100.6.1.13 ). Certificates that have this OID can be used for code signing.

"SSL certificates" are certificates whose purpose is to be used to secure network connections using the SSL (Secure Sockets Layer) technology, which is the technology used by HTTPS for example (the S stands for SSL). That is why the https websites you visit have a certificate. Such certificates don't have the Apple code signing OID, you can't use them for code signing your app. You need to install them on the server you want your app to connect to.

Does it begin to make sense ?

:: @Pierre-Marie Baty added on 20 Jan ’22 · 17:25

Erratum (though it's not really relevant to the explanation): the OID for generic code signing is actually 1.3.6.1.5.5.7.3.3, but Apple uses additional 1.2.840.113635.100.6.1.x OIDs in their certificates to specify which context (development, production, ad hoc, etc).

append delete #34. billygunn

I am referring to the link below,

https://www.innovapptive.com/blog/setup-push-notifications-in-ios

I do have to say that the post is not very recent as it uses the old UI but the steps are shown in detail.

append delete #35. Pierre-Marie Baty

See the addition to my reply above. Also, take the time to read this without hurry (from your link):

a Client SSL Certificate that allows your notification server to connect to the Apple Push Notification Service is required.

To underline: the purpose of this SSL certificate is to "allow your notification server to connect to the Apple Push Notification Service". For your Push Notifications to work, you need a push notification server infrastructure. Do you have one ? If so, you need to install this SSL client certificate in it so that it is allowed to connect the Apple Push Notifications master server.

:: @Pierre-Marie Baty added on 20 Jan ’22 · 17:30

In a nutshell: this extra SSL certificate takes no part in code signing, and doesn't even need to appear anywhere in your app. It needs to be copied to your push notification server so that your server initiates its SSL connection to the Apple Push Notification server with it.

append delete #36. billygunn

Sorry for the delay in responding to this post. I would like to first acknowledge the fact that I was burnt out when working on this issue and I might have not read the SSL certificate portion properly. However, I am used to how certificates and provisioning profiles work and I have been building for iOS for the past 2 years. I just thought that there was something very different with certificates that had to be done for the push notifications to work.

I returned to this problem last week on my friend's Macbook and tried building my project using XCode. This time it worked perfectly and there were no issues and I was able to send push notifications to my app. I copied accross the Pods folder that was generated by XCode and tried building the project on Windows with the iOS Builder. It did not use the cocoa pods tool for pulling the Pod files this time and the build worked without any issues.

So, this means that there is something wrong with your cocoa pods tool that results in the system log,

"Trust evaluate failure: [leaf IssuerCommonName LeafMarkerOid".

I would appreciate it if you can give me a refund for the cocoa pods tool because I wasted a lot of time and effort trying to fix this issue even though there was nothing wrong with anything from my side.

append delete #37. Pierre-Marie Baty

Hello

Well, I understand your state of mind. But I'd like to reproduce the problem because there are things that I need to understand better.

Once you got your working build on Windows, have you tried renaming your Pods directory to Pods.bak and letting the CocoaPods daemon re-create the Pods directory to confirm that building this way *still* doesn't work ? I'm asking this because very often, Pods are pushed on the official pods repository that are actually broken, and get fixed sometime later with a version change that nobody notices - especially when the Podfile claims "I need the pod named xxxxx with version *equal or higher than* yyyyy". In this case CocoaPods simply fetches the latest available, buggy or not.

Anyway, if you can send me your project (the one that builds), and I can reproduce the situation you describe, that is:
- that letting the CocoaPods daemon recreate the Pods directory ends up in a non-working build,
- that using the Pods directory that you'll send me instead ends up in a working build,
then I'll agree your refund request, and foremost on my side I'll be able to work out the difference that causes this behaviour, and fix it.

append delete #38. billygunn

Hi Pierre,

Sorry for disappearing again. I have been under a lot of workload and did not get a chance to respond. So, after doing some digging I noticed that the issue that I was having was to do with version 3.43 of the iOS Builder.

I updated it to version 3.45 and the cocoa pods tool is working fine. I ended up using the tool for a couple of other packages so I don't want to go ahead with the request for a refund.

The build times are very long though. Any tips to make it quicker? I noticed that the packages get downloaded again every time I build to a new folder. Any chance that the frameworks can be automatically copied over from a shared location? I am doing it manually at the moment.

append delete #39. Pierre-Marie Baty

If you use CocoaPods, that's just the way it works.

Unity creates a fresh Xcode project with a Podfile. CocoaPods downloads the source code of every package listed in that Podfile and builds them all in order. Then once each and every CocoaPods dependency is built, your app itself is finally built and linked against the compiled dependencies.

It would behave likewise on your Mac. It is obvious that such a method of managing dependencies is suboptimal, but I can't change the way CocoaPods works unfortunately.

To speed up the build, one can usually gather the compiled libraries and frameworks from the build directory and carefully save them aside, and then inject them in the build process using the linker flags, skipping CocoaPods completely. It's not exactly an user-friendly task because you have to use a different linker flag if what you're injecting is a static or a dynamic library or framework, or if it's a precompiled binary in which case you need to treat it differently. When everything is done correctly, you can get truly tremendeous build speeds because only your project is rebuilt each time, and all the dependencies are reused. Please refer to the documentation to learn how to do that.

append delete #40. billygunn

Sure. Thanks for letting me know.

append delete #41. Pierre-Marie Baty

You’re welcome.

Reply

(Leave this as-is, it’s a trap!)

There is no need to “register”, just enter the same name + password of your choice every time.

Pro tip: Use markup to add links, quotes and more.

Moderators: Pierre-Marie Baty