I’m using xCode 13 beta
4 and want to archive my project containing Kingfisher
.
The app runs fine under iOS 15
, however I get the following errors when I look to archive it. Anyone with an idea what I should do? Thanks!
Question posted in Xcode
Whether you're new to Xcode or an experienced developer, our archive has everything you need to know about this integrated development environment (IDE). From basic functionalities to advanced features, our archive covers a wide range of Xcode-related questions and answers. Browse our archive now and find solutions to your Xcode questions, and take your app development skills to the next level
Whether you're new to Xcode or an experienced developer, our archive has everything you need to know about this integrated development environment (IDE). From basic functionalities to advanced features, our archive covers a wide range of Xcode-related questions and answers. Browse our archive now and find solutions to your Xcode questions, and take your app development skills to the next level
4
Answers
Using Kingfisher 7.0.0 beta version should solve it.
E.g.
pod 'Kingfisher', '~> 7.0'
If you are using Xcode 13, here is a workaround.
If you need to use Xcode 13 but cannot upgrade to v7, use the version6-xcode13 branch. However, you have to drop iOS 10 support due to an Xcode 13 bug.
Having Xcode 13 upgrade, after pod update, I start getting the same issue as you, after a workaround, I found two ways:
Downgrade Kingfisher to 5.x like:
pod ‘Kingfisher’, ‘~>5.15.7’
OR
Waiting for any fix from Kingfisher, I opted for downgrading to 5.x
This script worked for me on Xcode 13