skip to Main Content

`xcodebuild` for scheme and target options

why xcodebuild building the same application differently for scheme and target options? xcodebuild -target uConnect build Above commands builds with Release config in build folder inside project. xcodebuild -scheme uConnect build Above builds with Debug config in Xcode’s DrivedData folder.…

VIEW QUESTION

Xcode – Swift tableviewcell height stays fixed

My tableviewcell height stays fixed even though I do the following: tableView.rowHeight = UITableView.automaticDimension tableView.estimatedRowHeight = 150 I have one imageview and one label inside the cell and I gave constraints to each side. Also, I tried: func tableView(_ tableView:…

VIEW QUESTION

Xcode – Unable to Archive ReactNative project in Mac M1

When I try to Archive, I get the following error - Multiple commands produce '/Users/kumar/Library/Developer/Xcode/DerivedData/project-giaimtwxkjihslcrnslgrczdvfrm/Build/Intermediates.noindex/ArchiveIntermediates/project/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/AccessibilityResources.bundle': 1) Target 'React-Core.common-AccessibilityResources' has create directory command with output '/Users/kumar/Library/Developer/Xcode/DerivedData/project-giaimtwxkjihslcrnslgrczdvfrm/Build/Intermediates.noindex/ArchiveIntermediates/project/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/AccessibilityResources.bundle' 2) Target 'React-Core.common-Hermes-AccessibilityResources' has create directory command with output '/Users/kumar/Library/Developer/Xcode/DerivedData/project-giaimtwxkjihslcrnslgrczdvfrm/Build/Intermediates.noindex/ArchiveIntermediates/project/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/AccessibilityResources.bundle' If I remove React-Core.common-AccessibilityResources from…

VIEW QUESTION
Back To Top
Search