我已经为这个问题苦苦挣扎好几天了 :( 在模拟器中构建我的 iOS 应用程序时,它工作正常(调试构建),但是一旦我尝试构建到我的 iPhone 11(v 14.5.1)我构建失败并出现以下错误:
ld: warning: Could not find or use auto-linked framework 'GoogleDataTransport'
ld: warning: Could not find or use auto-linked framework 'FirebaseRemoteConfig'
ld: warning: Could not find or use auto-linked framework 'FirebaseCore'
ld: warning: Could not find or use auto-linked framework 'Protobuf'
ld: warning: Could not find or use auto-linked framework 'FirebaseInstallations'
ld: warning: Could not find or use auto-linked framework 'GoogleToolboxForMac'
Undefined symbols for architecture arm64:
我正在使用 Xcode 12.5。我尝试了各种建议,例如:
- 加上价值
LD_VERIFY_BITCODE
_User-Defined
_Build Settings
NO
Enable Bitcode
在Build Settings
与价值NO
- 删除派生数据
- 卸载和安装 Pod
- 干净的构建
- 确保
Framework Search Paths
看起来正确。我只有$(inherited)
- 更改
$(inherited)
为recursive
- 确保我打开了 .xcworkspace 文件而不是 .xcodeproj
还有其他可能的解决方案吗?