我目前正在尝试将项目构建到Apple TV,当我们尝试使用iPhone模拟器时,一切都可以正常工作,但是每当切换到Apple TV构建目标时,都会出现此错误
clang: error: no such file or directory: '/Users/*snipped*/Library/Developer/Xcode/DerivedData/tvtest-atnvpclfpnjzzvcrpjskpbkzybfl/Build/Products/Debug-appletvsimulator/libRNFirebase.a'
每当我使用Iphone模拟器构建该项目时,都可以在Debug-iphonesimulator文件夹中找到该文件,并且构建成功。
我尝试将此文件从Debug-iphonesimulator文件夹中取出,并将其放置在Debug-appletvsimulator中。这修复了无法找到文件的错误,但随后出现了新错误。
ld: library not found for -lFirebaseCore
clang: error: linker command failed with exit code 1 (use -v to see invocation)
我尝试使用react-native link react-native-firebase
命令,也尝试手动将其链接无济于事。仅仅是不支持Apple TV吗?