iOS Question File missing in FireBase

Leandro Vaufran Stievano

Member
Licensed User
Hello everyone!
I'm using the local B4iBuildServer, I'm using B4i version 10 (latest) and I'm trying to compile an application that uses Firebase, but I'm getting a warning that some files are missing:

file missing: /Users/leandrostievano/Documents/desenvolvimento/B4iBuildServer/Libs/Extra/Firebase/FirebaseCoreInternal.xcframework/macos-arm64_x86_64/FirebaseCoreInternal.framework/Resources
file missing: /Users/leandrostievano/Documents/desenvolvimento/B4iBuildServer/Libs/Extra/Firebase/FirebaseCoreInternal.xcframework/macos-arm64_x86_64/FirebaseCoreInternal.framework/Modules
file missing: /Users/leandrostievano/Documents/desenvolvimento/B4iBuildServer/Libs/Extra/Firebase/FirebaseCoreInternal.xcframework/macos-arm64_x86_64/FirebaseCoreInternal.framework/Headers
file missing: /Users/leandrostievano/Documents/desenvolvimento/B4iBuildServer/Libs/Extra/Firebase/FirebaseCoreInternal.xcframework/macos-arm64_x86_64/FirebaseCoreInternal.framework/Versions/Current
file missing: /Users/leandrostievano/Documents/desenvolvimento/B4iBuildServer/Libs/Extra/Firebase/FirebaseCoreInternal.xcframework/ios-arm64_x86_64-maccatalyst/FirebaseCoreInternal.framework/Headers
file missing: /Users/leandrostievano/Documents/desenvolvimento/B4iBuildServer/Libs/Extra/Firebase/FirebaseCoreInternal.xcframework/ios-arm64_x86_64-maccatalyst/FirebaseCoreInternal.framework/Resources
file missing: /Users/leandrostievano/Documents/desenvolvimento/B4iBuildServer/Libs/Extra/Firebase/FirebaseCoreInternal.xcframework/ios-arm64_x86_64-maccatalyst/FirebaseCoreInternal.framework/Versions/Current
file missing: /Users/leandrostievano/Documents/desenvolvimento/B4iBuildServer/Libs/Extra/Firebase/FirebaseCoreInternal.xcframework/ios-arm64_x86_64-maccatalyst/FirebaseCoreInternal.framework/Modules

Where can I download these files?

The complete file with the log message is attached.

thank's in advanced
 

Attachments

  • compile_log.txt
    133.5 KB · Views: 10

Erel

B4X founder
Staff member
Licensed User
Longtime User
Search for "error:" to find the actual errors. You will see several errors like this:

error: The signature of “GoogleUtilities.xcframework” cannot be verified.

It means that the signatures included in each framework do not much the content. It is not yet clear what causes it. You can try to delete the firebase frameworks and download it them from Google directly: https://firebase.google.com/download/ios#integrate-manually (from your Mac). Or download the package again directly to your Mac.

You can also delete all the _CodeSignature folders. At least as a temporal solution.
 
Upvote 0

Leandro Vaufran Stievano

Member
Licensed User
Search for "error:" to find the actual errors. You will see several errors like this:

error: The signature of “GoogleUtilities.xcframework” cannot be verified.

It means that the signatures included in each framework do not much the content. It is not yet clear what causes it. You can try to delete the firebase frameworks and download it them from Google directly: https://firebase.google.com/download/ios#integrate-manually (from your Mac). Or download the package again directly to your Mac.

You can also delete all the _CodeSignature folders. At least as a temporal solution.
Hi Erel,

Thank you for replying.

I downloaded https://firebase.google.com/download/ios#integrate-manually but it didn't solve the problem.

I deleted all the _CodeSignature folders and it worked! Is there any problem with not having the _CodeSignature folders, or can I use it like this without problems?
 
Upvote 0
Top