This tag should only be used for questions specific to the usage and features of Xcode 14. Do not use this tag just because you are using Xcode to develop your app. General Xcode questions should use the non-version specific [xcode] tag. Use tags appropriate for the OS such as [ios] or [macos].
Questions tagged [xcode14]
351 questions
4
votes
3 answers
does not contain bitcode. You must rebuild it with bitcode enabled (Xcode setting ENABLE_BITCODE)
I am facing this error while installing in device but build is running perfectly in simulator.
As suggest in error i have disabled bitcode in this library but still getting this error while trying to run in device.
Xcode version:- 14.1
Showing All…

Rishi jha
- 51
- 2
- 6
4
votes
1 answer
Xcode failed to push files because "Communication with the service was interrupted"
I've been trying to push my project from xcode to github but it keeps giving me an error message that the communication with the service was interrupted. Previous commits and pushed have worked but its broken now. I've already tried restarting my…

Zudoturiku
- 121
- 7
4
votes
0 answers
Apple Swift version 5.7 not working on Apple Swift version 5.6.1
We have built a binary framework built with Xcode 14.1 using Xcode 13.4.1 getting below error.
BUILD_LIBRARY_FOR_DISTRIBUTION ENABLED ALSO.
this SDK is not supported by the compiler (the SDK is built with
'Apple Swift version 5.7.1…

Ravikanth
- 308
- 1
- 10
4
votes
2 answers
Xamarin.Mac: MMP : error MM5309: Failed to execute the tool 'clang'
Since macOS has been upgraded, I upgraded all development environments (Xcode, etc.) and wanted to build with an existing macOS application software project, but I get the following 2 errors and cannot build.
macOS Ventura (13.0)
Xcode 14.1
Visual…

hibara
- 137
- 11
4
votes
2 answers
Fastlane with XCode 14: ARCHIVE FAILED
My current version of Fastlane 2.173.0 works OK with XCode 13 and builds and publishes my iOS RN/Native project to TestFlight. But after moving to XCode 14 I have got next error on start building (gym).
[16:56:49]: $ set -o pipefail && xcodebuild…

iUrii
- 11,742
- 1
- 33
- 48
4
votes
0 answers
SRWebSocket.m shows warning in Xcode 14, working fine in Xcode 13.4.1
-(NSRunLoop *)runLoop;
{
dispatch_group_wait(_waitGroup, DISPATCH_TIME_FOREVER);
return _runLoop;
}
error:- Thread running at QOS_CLASS_USER_INTERACTIVE waiting on a lower QoS thread running at QOS_CLASS_DEFAULT. Investigate ways to avoid priority…

Saurabh Sharma
- 1,671
- 2
- 13
- 16
4
votes
0 answers
Measure battery usage for iOS from Xcode 14
There is a Energy Profile in Xcode 12. But can't see this any more in Xcode 14. And even more, it's always showing Insufficient Metrics Data for our 5k users app in Xcode organizer. I'm wondering what is the best way to measure the battery usage and…

Bagusflyer
- 12,675
- 21
- 96
- 179
4
votes
0 answers
Xcode requires development team on each build/run
Before upgrading Xcode to 14.0 version, I didn't have any problems with re-running application on real device - I selected the development team only once, and then made the build/run continuously
Now, after upgrading to Xcode 14.0, each time after…

spatak
- 1,039
- 1
- 14
- 25
4
votes
1 answer
xcode-select: Failed to locate 'clang'
When I try to run the clang command, I get the following error:
xcode-select: Failed to locate 'clang', requesting installation of command line developer tools.
And then I'm getting this error:
The "clang" command requires the command line…

Jose Manuel
- 90
- 5
4
votes
1 answer
Xcode 14 fails to locate project classes when accessing through interface builder
I want to open WishListSupporterViewController source code file by clicking the arrow in the Class field. However nothing happens when clicking this icon in Xcode 14. Is this feature broken or something is wrong with configuration of my project?

yasin89
- 103
- 8
4
votes
1 answer
AsyncImage in a Button or NavigationLink doesn't load while scrolling List
This used to work fine before but since Xcode 14 if I use an AsyncImage inside a Button or NavigationLink in my list the image loads the first time but when the cell is reused it only displays the placeholder.
Two things I noticed:
clicking on the…

Ludyem
- 1,709
- 1
- 18
- 33
4
votes
1 answer
Xcode 14 giving build error for flurry sdk
After updating to xcode 14 I'm getting build error
error build: Undefined symbol: _OBJC_CLASS_$_Flurry
error build: Undefined symbol: _OBJC_CLASS_$_FlurrySessionBuilder
I tried cleaning pods and reinstalling pods and also I tried adding…

Bruce098
- 41
- 2
4
votes
3 answers
Sudden error with Xcode 14 RC: Not entitled to listen to push notifications. Please add the 'aps-connection-initiate' entitlement
I just downloaded the Xcode 14 release candidate and I started getting the following crashing error on startup (didn't try the other betas). I made no changes in the codebase. CloudKit was working fine before:
[CK] BUG IN CLIENT OF CLOUDKIT: Not…

andrewlewisdev
- 202
- 2
- 11
3
votes
1 answer
What is the minimum Deployments version we must set for iOS after April 2023 in Xcode 14.1 when submitting to app store?
By April 2023, Apple has mandate us to use Xcode 14.1 with iOS 16.1 SDK when building and submitting app.
In Xcode there're 2 fields:
"iOS Deployment Target": iOS 16.1 ("Default" means 16.1? in xcode 14.1?)
"Minimum Deployments": what is the…

TT_TT
- 91
- 3
- 16
3
votes
0 answers
[MyClass initWithCoder:]: unrecognized selector sent to instance - On iOS16
I am using the [NSKeyedUnarchiver unarchiveObjectWithData:result] methode for unarchiving NSData in my objective c bases app.
NSMutableArray *array = (NSMutableArray *)[NSKeyedUnarchiver unarchiveObjectWithData:result];
This is working pretty fine…

Mohammed Abdul Basith
- 206
- 2
- 8