Post

Replies

Boosts

Views

Activity

error reading dependency file Xcode 12 beta 4
App compiles and runs fine on device and simulator. The app uses a Swift Package name 'TreasureMaps' I get 45 errors only when building Archive, but the archive is then presented in the Organizer window. However, the organizer does not show options to upload to iTunes Store. I don't see anything obvious at the file locations indicated. Here's the error: error: error reading dependency file '/Users/tguion/Library/Developer/Xcode/DerivedData/TreasureMapsWY-ayimlaxbqafjfmdvveldtoqbnstj/Build/Intermediates.noindex/ArchiveIntermediates/TreasureMapsWY/IntermediateBuildFilesPath/TreasureMaps.build/Release-iphoneos/TreasureMaps.build/Objects-normal/arm64/TreasureMaps-master.d': unexpected character in prerequisites at position 1226229 (in target 'TreasureMaps' from project 'TreasureMaps') Here's the line at position 1226229 - https://developer.apple.com/forums/content/attachment/f1e2698e-790a-4b71-8618-0ca8b94c7afe
4
0
3.7k
Aug ’20
Crash on Xcode beta 4, but not with beta 3
The last line of this function crashes. When going back to beta 3, no crash.     func configuredOutlineHeaderCell(textStyle: UIFont.TextStyle) -> UICollectionView.CellRegistration<UICollectionViewListCell, String> {         return UICollectionView.CellRegistration<UICollectionViewListCell, String> { (cell, indexPath, title) in             var content = cell.defaultContentConfiguration()             content.text = title             content.textProperties.font = UIFont.preferredFont(forTextStyle: textStyle)             cell.contentConfiguration = content             cell.accessories = [.outlineDisclosure(options: .init(style: .header))]// DEBUG Aug 11 beta 4 crashing         }     }
0
0
192
Aug ’20