Build Failed issue in Xcode 14.3 version

I am facing build failed error when i build the project in Xcode 14.2 this is running fine can anyone help in this issue.

Thanks

It seems you are importing some pods in your app. Problem apparently comes from them.

Actually, Yes I am facing to manage third party some library , like Kingfisher, ComScore ,'Analytics', '~> 4.1', these are the third party libraries I am getting issue, could you help me to fixed this issue.

I can’t really help you with the CocoaPods side of this but the underlying cause of this problem is that tvOS and tvOS Simulator are different platforms. You can’t link an app built for tvOS Simulator to a framework built for tvOS even if they have the same CPU architecture. The correct solution here is to build your framework as an XCFramework, including both tvOS and tvOS Simulator variants.

An Apple Library Primer explains this in more detail and has links to relevant docs.

Share and Enjoy

Quinn “The Eskimo!” @ Developer Technical Support @ Apple
let myEmail = "eskimo" + "1" + "@" + "apple.com"

Build Failed issue in Xcode 14.3 version
 
 
Q