xcode ios 构建链接器命令失败,退出代码
xcode ios build linker command failed with exit code
我正在尝试为项目存档(创建 IPA),但遇到以下错误...
ld: '/Users/anupsaund/Desktop/mobileapp-ios/GoogleAnalytics/libAdIdAccess.a(TAGActualAdIdAccess.o)' does not contain bitcode. You must rebuild it with bitcode enabled (Xcode setting ENABLE_BITCODE), obtain an updated library from the vendor, or disable bitcode for this target. file '/Users/anupsaund/Desktop/mobileapp-ios/GoogleAnalytics/libAdIdAccess.a' for architecture armv7
clang:错误:链接器命令失败,退出代码为 1(使用 -v 查看调用)
任何人都可以帮助我了解错误可能出在哪里吗?
它是在 google 分析库中还是在其他地方?
我如何通过 Xcode 获取详细信息以向我显示错误抛出的调用代码?
如有任何帮助,我们将不胜感激。
您的项目设置中启用了位码,但您的应用在编译时没有启用它。要解决此问题,您只需将项目和库设置中的 Enable Bitcode 设置为 No。希望这对您有所帮助!
我正在尝试为项目存档(创建 IPA),但遇到以下错误...
ld: '/Users/anupsaund/Desktop/mobileapp-ios/GoogleAnalytics/libAdIdAccess.a(TAGActualAdIdAccess.o)' does not contain bitcode. You must rebuild it with bitcode enabled (Xcode setting ENABLE_BITCODE), obtain an updated library from the vendor, or disable bitcode for this target. file '/Users/anupsaund/Desktop/mobileapp-ios/GoogleAnalytics/libAdIdAccess.a' for architecture armv7
clang:错误:链接器命令失败,退出代码为 1(使用 -v 查看调用)
任何人都可以帮助我了解错误可能出在哪里吗? 它是在 google 分析库中还是在其他地方?
我如何通过 Xcode 获取详细信息以向我显示错误抛出的调用代码?
如有任何帮助,我们将不胜感激。
您的项目设置中启用了位码,但您的应用在编译时没有启用它。要解决此问题,您只需将项目和库设置中的 Enable Bitcode 设置为 No。希望这对您有所帮助!