Post

Replies

Boosts

Views

Activity

Reply to How can I set TestFlight test notes for XCode Cloud builds?
the solution is simple but spread across threads and pages online. here is the easy copy-paste create a folder ci_scripts in the root of your project. then create a ci_post_xcodebuild.sh file in that new folder. paste this in it: #!/bin/zsh # save as ci_scripts/ci_post_xcodebuild.sh in your project root if [[ -d "$CI_APP_STORE_SIGNED_APP_PATH" ]]; then TESTFLIGHT_DIR_PATH=../TestFlight mkdir $TESTFLIGHT_DIR_PATH git fetch --deepen 3 && git log -3 --pretty=format:"%s" | cat > $TESTFLIGHT_DIR_PATH/WhatToTest.en-US.txt fi replace 3 with how many past commits you want in your changelog
Oct ’24
Reply to Xcode 26.1 RC issue
the issue is NOT fixed in macOS 26.1, nor is it possible as it's an issue in the simulator itself. disabling the reportcrash service is the only proper fix that also solves the preview simulator: launchctl unload -w /System/Library/LaunchAgents/com.apple.ReportCrash.plist sudo launchctl unload -w /System/Library/LaunchDaemons/com.apple.ReportCrash.Root.plist
Nov ’25
Reply to How to prevent Xcode rename my file when drop to Assets.xcassets
still happening on Xcode 13
Replies
Boosts
Views
Activity
Sep ’21
Reply to Xcode 14 - WatchKit App - Unable to install "App"
After the automatic conversion, the old info.plist remained. I also fixed it by removing the old info.plist, cleaning the project, restarting xcode and running the app again
Topic: App & System Services SubTopic: General Tags:
Replies
Boosts
Views
Activity
Sep ’22
Reply to How can I set TestFlight test notes for XCode Cloud builds?
the solution is simple but spread across threads and pages online. here is the easy copy-paste create a folder ci_scripts in the root of your project. then create a ci_post_xcodebuild.sh file in that new folder. paste this in it: #!/bin/zsh # save as ci_scripts/ci_post_xcodebuild.sh in your project root if [[ -d "$CI_APP_STORE_SIGNED_APP_PATH" ]]; then TESTFLIGHT_DIR_PATH=../TestFlight mkdir $TESTFLIGHT_DIR_PATH git fetch --deepen 3 && git log -3 --pretty=format:"%s" | cat > $TESTFLIGHT_DIR_PATH/WhatToTest.en-US.txt fi replace 3 with how many past commits you want in your changelog
Replies
Boosts
Views
Activity
Oct ’24
Reply to NWBrowser with bonjour returning PolicyDenied(-65570)
does macOS 15.5 fix this issue? our apps use Multipeer Connectivity which is broken and testing is a nightmare
Replies
Boosts
Views
Activity
May ’25
Reply to Xcode 26.1 RC issue
the issue is NOT fixed in macOS 26.1, nor is it possible as it's an issue in the simulator itself. disabling the reportcrash service is the only proper fix that also solves the preview simulator: launchctl unload -w /System/Library/LaunchAgents/com.apple.ReportCrash.plist sudo launchctl unload -w /System/Library/LaunchDaemons/com.apple.ReportCrash.Root.plist
Replies
Boosts
Views
Activity
Nov ’25
Reply to Can’t paste into Simulator after updating to Xcode 26.4
will we get a 26.4.1 hotfix or we have to wait 2 months for the 26.5?
Replies
Boosts
Views
Activity
2w