'GoogleUtilities/GULURLSessionDataResponse.h' file not found问题处理

259 阅读1分钟

背景

之前项目工程通过pod引入Firebase后一直报这个错误,后来找到了解决方法,记录如下:

解决步骤

  1. 删除pod 'FirebaseCore'
  2. 修改引用方式为:
    pod 'FirebaseCrashlytics'
    pod 'FirebaseRemoteConfig'
    pod 'FirebaseAnalytics'
  1. 删除Podfile.lock文件,删除.xcworkspace文件;
  2. 重新执行pod install

参考

stackoverflow.com/questions/6…