Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

protobuf: clang frontend command failed with exit code 70 (use -v to see invocation)

Recently I removed Fabric from project and installed Firebase/Crashlytics instead. After that when I try to upload app to AppStore using fastlane or do it using native Xcode tools I faced with such error:

Clang frontend command failed with exit code 70 (use -v to see invocation)

enter image description here

I've tried to clean DerivedData folder, pod deintegrate, pod install but error remains.

List of pods:

pod 'Firebase/Core'
pod 'Firebase/Messaging'
pod 'Firebase/Database'
pod 'Firebase/Auth'
pod 'Firebase/Crashlytics'
pod 'Firebase/Analytics'
pod 'Locksmith'
pod 'CryptoSwift'
pod 'QRCode'
pod 'MessageKit'
pod 'MessageInputBar'
pod 'Alamofire', '~> 5.0.0-beta.3'
pod 'SQLite.swift', '~> 0.12.0'
pod 'ReachabilitySwift'
pod 'Localize-Swift', '~> 2.0'

Version of Xcode - 10.1 (10B61)

Any ideas?

like image 262
Aleksey Shevchenko Avatar asked Jan 18 '26 06:01

Aleksey Shevchenko


1 Answers

Current version of Firebase require at least Xcode 10.3. Details at https://firebase.google.com/docs/ios/setup

like image 84
Paul Beusterien Avatar answered Jan 20 '26 01:01

Paul Beusterien