skip to Main Content

Xcode – Failed to convert from bundle ID

After updating to iOS 17 and Xcode 15, the following warning appears in Xcode: -warning- nw_parameters_set_source_application_by_bundle_id_internal Failed to convert from bundle ID (my bundel ID) to UUID. This could lead to wrong data usage accounting. How do I solve this…

VIEW QUESTION

Issue with Unity build in Xcode

I am having trouble getting an Xcode project exported from Unity to build correctly. When I attempt to create an adhoc IPA file I get this error (apparently something to do with ArcGIS): ld: unknown file type in '/Users/me/myproject/Frameworks/ARM64/Assets/Plugins/ArcGIS/Binaries/iOS/arm64/Runtimecore.framework/Runtimecore' clang:…

VIEW QUESTION

Xcode – Presenting Confirmation Dialog with 2 different properties

I want to present Confirmation Dialog with 2 different binding properties, something like this: .confirmationDialog("", isPresented: $calendarViewModel.showingDeleteEventDialog || $remindersViewModel.showingDeleteReminderDialog) { Button("Delete", role: .destructive) { switch detailType { case .reminder: remindersViewModel.deleteReminder() case .event: calendarViewModel.deleteEvent() } } Button("Cancel", role: .cancel) { }…

VIEW QUESTION
Back To Top
Search