0

描述

我无法使用 react-native-fbads 作为依赖项来构建我的 react-native 应用程序的生产版本。

我收到以下错误:

ld: library not found for -lReactNativeAdsFacebook
clang: error: linker command failed with exit code 1 (use -v to see invocation)

在使用这个库构建生产版本时,我在 iOS 上遇到了这个问题。安卓运行良好。我正在使用来自 npm 的最新版本,但它也发生在 master 分支上。

在 XCode 中设置并Build Active Architecture Only为iPhone 7 iOS 12 构建时,一切正常。这不是生产解决方案,因为还应支持旧版本。YESBuild Settings

使用 4.2.0 构建良好。

堆栈跟踪

Ld /Users/jobeso/Library/Developer/Xcode/DerivedData/playground-breooeaonoutyzaiywigdxwsujyp/Build/Intermediates.noindex/playground.build/Release-iphonesimulator/playground.build/Objects-normal/x86_64/playground normal x86_64 (in target: playground)
cd /Users/jobeso/projects/playground/ios
export IPHONEOS_DEPLOYMENT_TARGET=9.0
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk -L/Users/jobeso/Library/Developer/Xcode/DerivedData/playground-breooeaonoutyzaiywigdxwsujyp/Build/Products/Release-iphonesimulator -F/Users/jobeso/Library/Developer/Xcode/DerivedData/playground-breooeaonoutyzaiywigdxwsujyp/Build/Products/Release-iphonesimulator -F/Users/jobeso/projects/playground/ios/Pods/FBAudienceNetwork -filelist /Users/jobeso/Library/Developer/Xcode/DerivedData/playground-breooeaonoutyzaiywigdxwsujyp/Build/Intermediates.noindex/playground.build/Release-iphonesimulator/playground.build/Objects-normal/x86_64/playground.LinkFileList -Xlinker -rpath -Xlinker @executable_path/Frameworks -mios-simulator-version-min=9.0 -dead_strip -Xlinker -object_path_lto -Xlinker /Users/jobeso/Library/Developer/Xcode/DerivedData/playground-breooeaonoutyzaiywigdxwsujyp/Build/Intermediates.noindex/playground.build/Release-iphonesimulator/playground.build/Objects-normal/x86_64/playground_lto.o -Xlinker -objc_abi_version -Xlinker 2 -fobjc-arc -fobjc-link-runtime -ObjC -lc++ -lxml2 -framework AVFoundation -framework AudioToolbox -framework CoreGraphics -framework CoreImage -framework CoreMedia -framework FBAudienceNetwork -framework Foundation -framework Security -framework StoreKit -framework UIKit -weak_framework AdSupport -weak_framework CoreMotion -weak_framework SafariServices -weak_framework WebKit -ObjC -lc++ -Xlinker -sectcreate -Xlinker __TEXT -Xlinker __entitlements -Xlinker /Users/jobeso/Library/Developer/Xcode/DerivedData/playground-breooeaonoutyzaiywigdxwsujyp/Build/Intermediates.noindex/playground.build/Release-iphonesimulator/playground.build/playground.app-Simulated.xcent /Users/jobeso/Library/Developer/Xcode/DerivedData/playground-breooeaonoutyzaiywigdxwsujyp/Build/Products/Release-iphonesimulator/libRCTBlob.a /Users/jobeso/Library/Developer/Xcode/DerivedData/playground-breooeaonoutyzaiywigdxwsujyp/Build/Products/Release-iphonesimulator/libRCTAnimation.a /Users/jobeso/Library/Developer/Xcode/DerivedData/playground-breooeaonoutyzaiywigdxwsujyp/Build/Products/Release-iphonesimulator/libReact.a /Users/jobeso/Library/Developer/Xcode/DerivedData/playground-breooeaonoutyzaiywigdxwsujyp/Build/Products/Release-iphonesimulator/libRCTActionSheet.a /Users/jobeso/Library/Developer/Xcode/DerivedData/playground-breooeaonoutyzaiywigdxwsujyp/Build/Products/Release-iphonesimulator/libRCTGeolocation.a /Users/jobeso/Library/Developer/Xcode/DerivedData/playground-breooeaonoutyzaiywigdxwsujyp/Build/Products/Release-iphonesimulator/libRCTImage.a /Users/jobeso/Library/Developer/Xcode/DerivedData/playground-breooeaonoutyzaiywigdxwsujyp/Build/Products/Release-iphonesimulator/libRCTLinking.a /Users/jobeso/Library/Developer/Xcode/DerivedData/playground-breooeaonoutyzaiywigdxwsujyp/Build/Products/Release-iphonesimulator/libRCTNetwork.a /Users/jobeso/Library/Developer/Xcode/DerivedData/playground-breooeaonoutyzaiywigdxwsujyp/Build/Products/Release-iphonesimulator/libRCTSettings.a /Users/jobeso/Library/Developer/Xcode/DerivedData/playground-breooeaonoutyzaiywigdxwsujyp/Build/Products/Release-iphonesimulator/libRCTText.a /Users/jobeso/Library/Developer/Xcode/DerivedData/playground-breooeaonoutyzaiywigdxwsujyp/Build/Products/Release-iphonesimulator/libRCTVibration.a /Users/jobeso/Library/Developer/Xcode/DerivedData/playground-breooeaonoutyzaiywigdxwsujyp/Build/Products/Release-iphonesimulator/libRCTWebSocket.a -lPods-playground -lReactNativeAdsFacebook -Xlinker -dependency_info -Xlinker /Users/jobeso/Library/Developer/Xcode/DerivedData/playground-breooeaonoutyzaiywigdxwsujyp/Build/Intermediates.noindex/playground.build/Release-iphonesimulator/playground.build/Objects-normal/x86_64/playground_dependency_info.dat -o /Users/jobeso/Library/Developer/Xcode/DerivedData/playground-breooeaonoutyzaiywigdxwsujyp/Build/Intermediates.noindex/playground.build/Release-iphonesimulator/playground.build/Objects-normal/x86_64/playground

可重现的演示

gitlab 上的示例项目

问题

github上的问题

4

1 回答 1

0

这是库中标题搜索路径的问题。带有修复的公关在链接的 github 问题中。

于 2018-10-27T18:12:17.913 回答