Search results for

xcode github

94,028 results found

Post

Replies

Boosts

Views

Activity

Reply to URLRequest(url:cachePolicy:timeoutInterval:) started to crash in iOS 26
Phew, I already feel bad asking you again 😅 It turns out that MTE and Malloc Stack Logging cannot be enabled at the same time. But I've tried to enabled Malloc Stack Logging, and then get delayed crash somewhere else. Unfortunately, I didn't really understand where/what to look for in Xcode. I tried to hit the 'Memory Graph Debug' but then the crash context seemed to get lost... most likely I am doing it wrong... A little context of our app: An UIPageViewController where you can swipe left/right to see the next/previous image. An UIViewController that has a TileImageView subview TileImageView that shows an image. This view is using CATileLayer. When draw(rect:) is called for a specific tile, we either show a cached tile or send a network request to a local server for the tile data. When the network response is received (callback in draw(rect:) we call the view's draw(rect:) to update with tile. Now if I scroll through the pages the crash may occur. As stated before this code was working fine before
2w
Reply to GitLab Self-Managed installation was incomplete.
One thing is that even though Xcode SCM is configured with HTTPS and the repo has only HTTPS remote configured when setting up Xcode the the authorisation flow flashes this redirect URL: client_redirect_path=/ci/api/teams/REDACTED/internal-setup-flow/scm-providers&team_id=REDACTED&scm_provider_id=REDACTED&client_redirect_base_uri=https://appstoreconnect.apple.com?***git_clone_url=ssh://git[@]gitlab._REDACTED_/_REDACTED_.git***&provider=gitlab-hosted&redirectAfterSuccessUri=https://appstoreconnect.apple.com/teams/_REDACTED_/ci-setup/success&code=_REDACTED_&state=_REDACTED_ Why is Xcode Cloud attempting to clone via SSH? git_clone_url=ssh://git[@]gitlab.REDACTED/REDACTED.git
2w
Enabling xcode project for CI/CD
Hello All, I am new to apple ecosystem. We have a xcode project whose code is scattered across different repos. We are trying setup CI/CD for this Xcode project to get build so that we could know build issue. Clone/Update all repos – which I can do via some script Generate xcode projects from sources synced in step 1. This is where we want your help. How should we approach this? What apple suggest for this ? In this step we don't want to use any third part tool (like CMake) to generate Xcode projects. Build targets to know build errors – This we can easily do via xcodebuild command line tool. Please share you input/thought on this. Your input is highly appreciated.
0
0
39
2w
Reply to URLRequest(url:cachePolicy:timeoutInterval:) started to crash in iOS 26
[quote='868298022, bims, /thread/806594?answerId=868298022#868298022, /profile/bims'] Looking at the ips-file I found that it does not show the finding that Xcode show [/quote] Right. Xcode has MTE smarts beyond what the human readable crash report shows. To see the underlying data, open the JSON crash report and search for memoryErrorReport. With some reformatting you get this: memoryErrorReport : { faultAddress:0x0c00000d9de112c0, blamedAllocation: { size:48, allocationTrace:…, deallocationTrace:…, isFreed:true, address:0x0c00000d9de112c0 }, errorType:use-after-free }, The allocationTrace and deallocationTrace backtraces need further massaging. I did a hack-ish job of that and have included the results at the end of this post. I wanted the JSON crash report so that I could run it through some internal tools. I was able to do the first part of that today. I was hoping it might point me at some known bugs. It did, but those were resolved a while bug and thus are unlikely to be the cause of t
2w
Reply to Xcode and Reading documents from a URL connection.
[quote='868358022, Apple_Fox, /thread/807599?answerId=868358022#868358022, /profile/Apple_Fox'] Is that something that would cause errors for downloading the documents … ? [/quote] It very much depends on the server. Given a URL for something downloadable, some servers allow you to download the resource directly and other require you to jump through hoops. You can see this even on Apple servers. For example, SF Symbols 7 is directly downloadable: https://devimages-cdn.apple.com/design/resources/download/SF-Symbols-7.dmg but Xcode 26.1.1 is not: https://download.developer.apple.com/Developer_Tools/Xcode_26.1.1/Xcode_26.1.1_Universal.xip In the Xcode case, the server redirect the download request to a login page. That login page assumes that the client is a person using a web browser, and it’s very hard to programmatically deal with the required authentication. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
2w
App Store Connect release notes RSS feed
I want to keep an eye on the App Store Connect release notes to find out when builds created with Xcode 26.2 RC will be accepted. I tried to add https://developer.apple.com/help/app-store-connect/release-notes/ to my RSS reeder but the items listed are not the same, it’s the items from the latest news from Apple Developer instead. Can we get an RSS feed please? Seems will be useful to monitor these release notes over time.
4
0
191
2w
Reply to Cannot submit apps with Xcode 26.2 RC
I installed the RC (replacing 26.1), tested my app, and went to create a release for an update that happens to need to be released pretty quickly. I recall from previous experience RC builds could submit apps to the App Store so figured I wouldn’t run into any problems. Now I’m blocked. I could go download Xcode 26.1 and redownload the iOS 26.1 Simulator and retest my app with that SDK version but that’s a lot of wasted time/resources only to release the update on a very soon to be out of date SDK. :/ Do you expect this RC build to be accepted in the near future?
2w
GitLab Self-Managed installation was incomplete.
After a break using AWS Macs for CI we are willing to give Xcode cloud another go. Unfortunately we are unable to complete the Grant Access to your Source Code step. We tried multiple accounts including maintainer, owner and admin. We tried from multiple Macs and versions of macOS. Connecting Xcode Cloud with your source control provider was incomplete. 503 Service Unavailable. Please ensure that your repository is available and accepting connections.
2
0
127
2w
Reply to Cannot submit apps with Xcode 26.2 RC
Thank you for providing this information. You are correct that the 26.2 RC is still not permitted to submit builds. The team typically updates this page when it is ready and open to submissions. https://developer.apple.com/help/app-store-connect/release-notes/ On the release notes, you’ll see something like “You can now upload apps built with Xcode….” I understand that submitting with RC versions is often possible, and I acknowledge that this may be an inconvenience. Please continue to monitor the release notes for updates. Could you please provide any reasons why you are unable to submit with the previous released version? Albert Pascual
  Worldwide Developer Relations.
2w
Reply to Permission error occurs when I use setDefaultApplication(at:toOpen:completion:)
Sounds like either it's not working right or the documentation needs to be updated to explain how to get it working. Our engineering teams need to investigate this issue, as resolution may involve changes to Apple's software. Please file a bug report, include a small Xcode project and some directions that can be used to reproduce the problem, and post the Feedback number here once you do. If you post the Feedback number here I'll check the status next time I do a sweep of forums posts where I've suggested bug reports. Bug Reporting: How and Why? has tips on creating your bug report.
Topic: App & System Services SubTopic: General Tags:
2w
Reply to Xcode not updating recent projects
Thank you for sharing your experience. It appears that you are encountering an unusual issue with Xcode not displaying recent projects. To resolve this, please ensure that both macOS and Xcode are updated to the latest versions compatible with your system. While you have mentioned your current versions, it is advisable to double-check for any minor updates. Could you kindly provide a screenshot of Xcode when you attempt to open the “Recents” folder using the “File” menu? Please note that the screenshot should display the contents of the “Recents” folder. File -> Open Recent Please indicate whether you observe any recent projects or if the list is completely empty. Albert Pascual
  Worldwide Developer Relations.
2w