Post

Replies

Boosts

Views

Activity

Reply to Xcode 15 iOS 17 Failed to install app on the device
I am getting the same issue on Xcode 15.0.1 (22266) (Build 15A507) with iPhone 15 Pro Max (iOS 17.1 public build). No Cocoapods, only SPM. Installing straight to the physical device. The issue did arise from nowhere. Nothing changed, just re-building the app (which previously - just minutes ago worked fine). Reported via "Feedback for Xcode tool" What I have tried: Restarting Mac Unpairing and Trusting again Removing Derived Data EDIT: Removing app from device and reinstalling helped. Failed to install the app on the device. Domain: com.apple.dt.CoreDeviceError Code: 3002 User Info: { DVTErrorCreationDateKey = "2023-10-27 18:48:36 +0000"; IDERunOperationFailingWorker = IDEInstallCoreDeviceWorker; NSURL = "file:///Users/lbaronas/Library/Developer/Xcode/DerivedData/meteo-lt-gxuxorcdugflksbgrlsvmfyaytxz/Build/Products/Debug-iphoneos/meteo-lt.app/"; } -- Unable to Install “Meteo Lietuva” Domain: IXUserPresentableErrorDomain Code: 1 Failure Reason: Please try again later. Recovery Suggestion: Could not hardlink copy /private/var/containers/Bundle/Application/21D0CAD7-392E-4ED9-B3EE-7AEDD73E7A7B/meteo-lt.app to /var/installd/Library/Caches/com.apple.mobile.installd.staging/temp.EGcwbh/extracted/Payload/meteo-lt.app with manifest /var/installd/Library/Caches/com.apple.mobile.installd.staging/temp.EGcwbh/extracted/com.apple.deltainstallcommands.com.liudasbar.meteo-lt -- Could not hardlink copy /private/var/containers/Bundle/Application/21D0CAD7-392E-4ED9-B3EE-7AEDD73E7A7B/meteo-lt.app to /var/installd/Library/Caches/com.apple.mobile.installd.staging/temp.EGcwbh/extracted/Payload/meteo-lt.app with manifest /var/installd/Library/Caches/com.apple.mobile.installd.staging/temp.EGcwbh/extracted/com.apple.deltainstallcommands.com.liudasbar.meteo-lt Domain: MIInstallerErrorDomain Code: 8 User Info: { FunctionName = "-[MIInstallableBundlePatch _applyDeltaPatchWithError:]"; LegacyErrorString = PackagePatchFailed; SourceFileLine = 116; } -- Entity with mode 0100644 exists at file location in dest path /private/var/installd/Library/Caches/com.apple.mobile.installd.staging/temp.EGcwbh/extracted/Payload/meteo-lt.app/Frameworks/MeteoLtUI.framework/_CodeSignature/CodeResources Domain: MIInstallerDeltaErrorDomain Code: 1 User Info: { FunctionName = "hardlink_copy_hierarchy"; SourceFileLine = 981; } -- Event Metadata: com.apple.dt.IDERunOperationWorkerFinished : { "device_isCoreDevice" = 1; "device_isWireless" = 1; "device_model" = "iPhone16,2"; "device_osBuild" = "17.1 (21B80)"; "device_platform" = "com.apple.platform.iphoneos"; "dvt_coredevice_version" = "348.1"; "dvt_mobiledevice_version" = "1643.2.4.100.1"; "launchSession_schemeCommand" = Run; "launchSession_state" = 1; "launchSession_targetArch" = arm64; "operation_duration_ms" = 6980; "operation_errorCode" = 8; "operation_errorDomain" = "com.apple.dt.CoreDeviceError.3002.IXUserPresentableErrorDomain.1.MIInstallerErrorDomain"; "operation_errorWorker" = IDEInstallCoreDeviceWorker; "operation_name" = IDERunOperationWorkerGroup; "param_debugger_attachToExtensions" = 0; "param_debugger_attachToXPC" = 1; "param_debugger_type" = 1; "param_destination_isProxy" = 0; "param_destination_platform" = "com.apple.platform.iphoneos"; "param_diag_MainThreadChecker_stopOnIssue" = 0; "param_diag_MallocStackLogging_enableDuringAttach" = 0; "param_diag_MallocStackLogging_enableForXPC" = 1; "param_diag_allowLocationSimulation" = 1; "param_diag_checker_tpc_enable" = 1; "param_diag_gpu_frameCapture_enable" = 0; "param_diag_gpu_shaderValidation_enable" = 0; "param_diag_gpu_validation_enable" = 1; "param_diag_memoryGraphOnResourceException" = 0; "param_diag_queueDebugging_enable" = 1; "param_diag_runtimeProfile_generate" = 0; "param_diag_sanitizer_asan_enable" = 0; "param_diag_sanitizer_tsan_enable" = 0; "param_diag_sanitizer_tsan_stopOnIssue" = 0; "param_diag_sanitizer_ubsan_stopOnIssue" = 0; "param_diag_showNonLocalizedStrings" = 0; "param_diag_viewDebugging_enabled" = 1; "param_diag_viewDebugging_insertDylibOnLaunch" = 1; "param_install_style" = 0; "param_launcher_UID" = 2; "param_launcher_allowDeviceSensorReplayData" = 0; "param_launcher_kind" = 0; "param_launcher_style" = 0; "param_launcher_substyle" = 8192; "param_runnable_appExtensionHostRunMode" = 0; "param_runnable_productType" = "com.apple.product-type.application"; "param_structuredConsoleMode" = 1; "param_testing_launchedForTesting" = 0; "param_testing_suppressSimulatorApp" = 0; "param_testing_usingCLI" = 0; "sdk_canonicalName" = "iphoneos17.0"; "sdk_osVersion" = "17.0"; "sdk_variant" = iphoneos; } -- System Information macOS Version 14.0 (Build 23A344) Xcode 15.0.1 (22266) (Build 15A507) Timestamp: 2023-10-27T21:48:36+03:00
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Oct ’23
Reply to Navigation bar title jumping between large and inline
Having the same issue on iOS 17 (running public Xcode 15 build with iOS 17.0 simulator) when parent view has large title and navigating to detail view. NavigationView (the one that is deprecated) is not causing any issues, however using NavigationStack brings jumping issue. Others have discussed the issue here too: https://developer.apple.com/forums/thread/654471 Reported the issue via FB13285300 The minimum reproducible code: import SwiftUI struct LanguagesListView: View { // MARK: - Init init() { } // MARK: - Body var body: some View { NavigationStack { listView .navigationTitle("Numbers list") .navigationBarTitleDisplayMode(.large) } } // MARK: - Views private var listView: some View { List { Section(header: Text("Numbers")) { ForEach(0...50, id: \.self) { number in NavigationLink(destination: EmptyView()) { Text(String(number)) } } .listSectionSeparator(.hidden, edges: .bottom) } .textCase(nil) .alignmentGuide(.listRowSeparatorLeading) { _ in 0 } } } }
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Oct ’23
Reply to Xcode 15.3 crippled with "internal inconsistency error"
The issue is present constantly Xcode Version 15.4 (15F31d).
Replies
Boosts
Views
Activity
May ’24
Reply to Unable to install “myapp”
The issue is still present. It does not work for me by deleting the app and reinstalling it via Xcode anymore. Updated to iOS 17.3. EDIT: Again restarting the device and Xcode, and reinstalling the app worked.
Replies
Boosts
Views
Activity
Jan ’24
Reply to Jaggy, Laggy, low-fps scrolling on iPhone 13 Pro (Pro Motion Display) for .offset
Same on iOS 17.
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Oct ’23
Reply to Xcode 15 iOS 17 Failed to install app on the device
I am getting the same issue on Xcode 15.0.1 (22266) (Build 15A507) with iPhone 15 Pro Max (iOS 17.1 public build). No Cocoapods, only SPM. Installing straight to the physical device. The issue did arise from nowhere. Nothing changed, just re-building the app (which previously - just minutes ago worked fine). Reported via "Feedback for Xcode tool" What I have tried: Restarting Mac Unpairing and Trusting again Removing Derived Data EDIT: Removing app from device and reinstalling helped. Failed to install the app on the device. Domain: com.apple.dt.CoreDeviceError Code: 3002 User Info: { DVTErrorCreationDateKey = "2023-10-27 18:48:36 +0000"; IDERunOperationFailingWorker = IDEInstallCoreDeviceWorker; NSURL = "file:///Users/lbaronas/Library/Developer/Xcode/DerivedData/meteo-lt-gxuxorcdugflksbgrlsvmfyaytxz/Build/Products/Debug-iphoneos/meteo-lt.app/"; } -- Unable to Install “Meteo Lietuva” Domain: IXUserPresentableErrorDomain Code: 1 Failure Reason: Please try again later. Recovery Suggestion: Could not hardlink copy /private/var/containers/Bundle/Application/21D0CAD7-392E-4ED9-B3EE-7AEDD73E7A7B/meteo-lt.app to /var/installd/Library/Caches/com.apple.mobile.installd.staging/temp.EGcwbh/extracted/Payload/meteo-lt.app with manifest /var/installd/Library/Caches/com.apple.mobile.installd.staging/temp.EGcwbh/extracted/com.apple.deltainstallcommands.com.liudasbar.meteo-lt -- Could not hardlink copy /private/var/containers/Bundle/Application/21D0CAD7-392E-4ED9-B3EE-7AEDD73E7A7B/meteo-lt.app to /var/installd/Library/Caches/com.apple.mobile.installd.staging/temp.EGcwbh/extracted/Payload/meteo-lt.app with manifest /var/installd/Library/Caches/com.apple.mobile.installd.staging/temp.EGcwbh/extracted/com.apple.deltainstallcommands.com.liudasbar.meteo-lt Domain: MIInstallerErrorDomain Code: 8 User Info: { FunctionName = "-[MIInstallableBundlePatch _applyDeltaPatchWithError:]"; LegacyErrorString = PackagePatchFailed; SourceFileLine = 116; } -- Entity with mode 0100644 exists at file location in dest path /private/var/installd/Library/Caches/com.apple.mobile.installd.staging/temp.EGcwbh/extracted/Payload/meteo-lt.app/Frameworks/MeteoLtUI.framework/_CodeSignature/CodeResources Domain: MIInstallerDeltaErrorDomain Code: 1 User Info: { FunctionName = "hardlink_copy_hierarchy"; SourceFileLine = 981; } -- Event Metadata: com.apple.dt.IDERunOperationWorkerFinished : { "device_isCoreDevice" = 1; "device_isWireless" = 1; "device_model" = "iPhone16,2"; "device_osBuild" = "17.1 (21B80)"; "device_platform" = "com.apple.platform.iphoneos"; "dvt_coredevice_version" = "348.1"; "dvt_mobiledevice_version" = "1643.2.4.100.1"; "launchSession_schemeCommand" = Run; "launchSession_state" = 1; "launchSession_targetArch" = arm64; "operation_duration_ms" = 6980; "operation_errorCode" = 8; "operation_errorDomain" = "com.apple.dt.CoreDeviceError.3002.IXUserPresentableErrorDomain.1.MIInstallerErrorDomain"; "operation_errorWorker" = IDEInstallCoreDeviceWorker; "operation_name" = IDERunOperationWorkerGroup; "param_debugger_attachToExtensions" = 0; "param_debugger_attachToXPC" = 1; "param_debugger_type" = 1; "param_destination_isProxy" = 0; "param_destination_platform" = "com.apple.platform.iphoneos"; "param_diag_MainThreadChecker_stopOnIssue" = 0; "param_diag_MallocStackLogging_enableDuringAttach" = 0; "param_diag_MallocStackLogging_enableForXPC" = 1; "param_diag_allowLocationSimulation" = 1; "param_diag_checker_tpc_enable" = 1; "param_diag_gpu_frameCapture_enable" = 0; "param_diag_gpu_shaderValidation_enable" = 0; "param_diag_gpu_validation_enable" = 1; "param_diag_memoryGraphOnResourceException" = 0; "param_diag_queueDebugging_enable" = 1; "param_diag_runtimeProfile_generate" = 0; "param_diag_sanitizer_asan_enable" = 0; "param_diag_sanitizer_tsan_enable" = 0; "param_diag_sanitizer_tsan_stopOnIssue" = 0; "param_diag_sanitizer_ubsan_stopOnIssue" = 0; "param_diag_showNonLocalizedStrings" = 0; "param_diag_viewDebugging_enabled" = 1; "param_diag_viewDebugging_insertDylibOnLaunch" = 1; "param_install_style" = 0; "param_launcher_UID" = 2; "param_launcher_allowDeviceSensorReplayData" = 0; "param_launcher_kind" = 0; "param_launcher_style" = 0; "param_launcher_substyle" = 8192; "param_runnable_appExtensionHostRunMode" = 0; "param_runnable_productType" = "com.apple.product-type.application"; "param_structuredConsoleMode" = 1; "param_testing_launchedForTesting" = 0; "param_testing_suppressSimulatorApp" = 0; "param_testing_usingCLI" = 0; "sdk_canonicalName" = "iphoneos17.0"; "sdk_osVersion" = "17.0"; "sdk_variant" = iphoneos; } -- System Information macOS Version 14.0 (Build 23A344) Xcode 15.0.1 (22266) (Build 15A507) Timestamp: 2023-10-27T21:48:36+03:00
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Oct ’23
Reply to NavigationView jumps when transitioning from displayMode large to inline
Issue is still present on iOS 17 with NavigationStack large navigation bar title being on parent view. However, it is not present with the deprecated NavigationView. Reported the issue via FB13285300 bug number
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Oct ’23
Reply to Navigation bar title jumping between large and inline
Having the same issue on iOS 17 (running public Xcode 15 build with iOS 17.0 simulator) when parent view has large title and navigating to detail view. NavigationView (the one that is deprecated) is not causing any issues, however using NavigationStack brings jumping issue. Others have discussed the issue here too: https://developer.apple.com/forums/thread/654471 Reported the issue via FB13285300 The minimum reproducible code: import SwiftUI struct LanguagesListView: View { // MARK: - Init init() { } // MARK: - Body var body: some View { NavigationStack { listView .navigationTitle("Numbers list") .navigationBarTitleDisplayMode(.large) } } // MARK: - Views private var listView: some View { List { Section(header: Text("Numbers")) { ForEach(0...50, id: \.self) { number in NavigationLink(destination: EmptyView()) { Text(String(number)) } } .listSectionSeparator(.hidden, edges: .bottom) } .textCase(nil) .alignmentGuide(.listRowSeparatorLeading) { _ in 0 } } } }
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Oct ’23
Reply to Xcode 15: "Cycle inside ...; building could produce unreliable results" due to DSTROOT=/
For me what worked: Updated cocoapods to the latest version (1.13.0), ran pod install, and moved all of my target's Run Script Phase build phases to the very bottom.
Replies
Boosts
Views
Activity
Oct ’23
Reply to iPhone is busy: Making Apple Watch ready for development
Developers community is absolutely sick of this issue.
Replies
Boosts
Views
Activity
Apr ’22
Reply to Big Sur Mac Crash 4 times in the last 6 hours - 2 no-report and 2 reports
My MacBook Pro 13" M1 (Big Sur 11.5.2 (20G95)) crashed several times already. One of the crash reports with error: IOSurface creation failed with size [844 x 128]. If size looks sane, this is likely due to an IOSurface leak and system IOSurface limit reached. https://pastebin.com/wMGBvUJP
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Sep ’21