Questions tagged [xcode13.2]
24 questions
17
votes
11 answers
Xcode won't pause at this breakpoint because it has not been resolved
Shortly after updating to Xcode 13.2.1 I started seeing some weird behaviour of breakpoints. When I run an app (in a simulator) some of my breakpoints change their look and turn to dotted blue outlined. Xcode does not stop execution at these…

Artem Kirillov
- 1,132
- 10
- 25
9
votes
7 answers
Xcode 13.2.1 Preview Not Working but Simulator Works
My Xcode Version 13.2.1 (13C100) got an unknown issue. I did several things like delete Xcode, new install Xcode, restore from backup nothing make any change! Currently, the project can be built and run in the simulator, but not in the preview…

Debashish M
- 193
- 3
- 13
3
votes
3 answers
No such module 'Flutter' : Xcode 13.2.1
I'm trying to run a flutter app - iOS with the following environment
Xcode Version 13.2.1 (13C100)
flutter sdk: 2.10.5
dart: 2.16.2
mac processor: Intel Core i7
but I get "No such module 'Flutter'" inside a file in extension Target beside my Runner…

Saad Aboulsooud Abdelmoaty Ali
- 101
- 1
- 6
2
votes
0 answers
Xcode 13 archive failed: ipatool failed with an exception: #
When using latest React-native version, an error occurs when attempting to archive and export a release build through xcodebuild.
ipatool failed with an exception: #

Harleen Kaur Arora
- 1,949
- 2
- 23
- 55
2
votes
0 answers
Unable to upload build to App Store Xcode 13.2. Invalid Bundle Structure
I am trying to upload build on AppStore using Xcode 13. But when I try to do so, I am getting the below error
Invalid Bundle Structure - The binary file 'MyApp.app/Frameworks/HHUnitConverter.framework/HHUnitConverter' is not permitted. Your app…

Surbhit Thanvi
- 269
- 1
- 2
- 7
2
votes
1 answer
App crash when I run on iOS 12.5.5 version - dyld: Symbol not found: ___chkstk_darwin
after updating Xcode 13.2.1 (13C100) when I run my app on iPhone 6(12.5.5) it's showing an error and the app is crashing.
dyld: Symbol not found: ___chkstk_darwin
Referenced from:…

PK Chahar
- 81
- 2
- 10
2
votes
2 answers
SwiftUI: @State variable never get updated from @Published
I'm trying to trigger an alert when is an error in the model but it never get updated to show the alert:
Here is my implementation in the view:
struct ContentView: View {
@ObservedObject var viewModel: ViewModel
@State var showAlert = false
…

user2924482
- 8,380
- 23
- 89
- 173
2
votes
1 answer
Xamarin.iOS | App crash on launch when build via XCode 13.2.1
We have an app which works on device when built via XCode 12.5.1.
But, when we build same app via XCode 13.2.1, it crashes on launch. No crash logs as app does not finish launching.
Symbolicated native crash device log from XCode:
1 …

vITs
- 1,651
- 12
- 30
2
votes
1 answer
NSManagedObjectContext Async/Await perform(schedule:_:)' is only available in iOS 15.0 or newer
I'm working on an App that still supports iOS 13 and need to fetch some data with CoreData.
This is how I would normally do it
context.perform({
let results = try context.fetch(request)
})
Now with Xcode 13 and async/await being available back to…

MeXx
- 3,357
- 24
- 39
2
votes
1 answer
App crashed when launched in Xcode 13.2.1 in iOS 15.2 simulator in debug mode
I recently downloaded Xcode 13.2.1. When I run the application it is crashing in iOS 15.2 in simulator while debugging. Also when already installed app i am launching by tapping on app icon it is running fine.
Here are backtrace:
thread #1, queue…

Yogendra Singh
- 2,063
- 25
- 20
2
votes
1 answer
XCode 13.2.1 Executable Not Found
I am trying to build my react-native ios application on an iPhone 12 (ios 14.3) simulator. After the build succeeds, I am getting an error dialog at the end reading:
"Executable Not…

Alix Humbert
- 75
- 1
- 9
1
vote
0 answers
Failed to run test cases : cannot test target on simulator
Cannot test target “FrameworkToolKitTests” on “iPhone 13 Pro Max”
architectures: x86_64
Domain: XCTHTestRunSpecificationErrorDomain
Code: 2
Using Xcode13.2.1 / testing framework code ,but testing not started
Note: set (Enable testability : true )

Vivek Gajbe
- 411
- 2
- 14
1
vote
1 answer
Delay contextMenu on SwiftUI
I'm trying to delay when the contextMenu appears because I have a drag gesture which causes me this view when trying to drag with some kind of accidental delay.
…
Text(exampleText)
.contextMenu
{
delay()
// Menus here
}
.gesture(
…

Estuardo Recargador
- 31
- 3
1
vote
1 answer
facebook-ios-sdk modules successfully installed but not able to import
I followed the steps as suggested in the official guide to install the packages using the Swift Package Manager and I manually selected the most recent release (currently v12.3.1).
Even though autocomplete shows the modules, and the package has been…

Alexandros Tzimas
- 43
- 7
1
vote
0 answers
Apple HealthKit Bug -> Some Permissions Disabled automatically on app restart
This bug has been affecting different users (iPhone 11,2 - iPhone12,3, etc...) on different iOS versions (iOS 15.x.x)
This was also seen on Xcode 12.5 simulator -> but “not yet” on Xcode 13.2)
Repro:
When launching our app, we call…

Pierre Wehbe
- 19
- 1