Post

Replies

Boosts

Views

Activity

Crowd sourced reporting of App Store Connect failures?
(always out-of-date) Developer system status is visible here: https://developer.apple.com/system-status/ However this is mostly out of date and seems to be manually updated since hours go by at times and thousands of reports are needed (both via Feedback Reporter or the dev forums) before this page acknowledges an outage of any kind. Please add a way to contact Apple directly from that page or "ping" whoever's concerned somehow so we can say "Hey guys, it's broken!". If enough people ping, then Apple can take some action. Right now iCloud / App Developer related services are offline multiple times a year and it's very inconvenient as no one even acknowledges till it's widespread everywhere (forums, stackoverflow, twitter etc). Google Play Store services are super efficient in this regard - they respond to bug reports within a few hours, acknowledge it and are transparent. Their server outages seem to be automatically monitored and controlled so that human-operators can be pinged appropriately. Every now and then the notarization service goes down and it's a pain because this means we can no longer notarize and push even "direct" macOS apps with critical fixes.
5
0
1.8k
May ’22
Xcode 14 beta 3 "ditto ... Operation not permitted"
We've got a built script for a macOS app that copies a menu extension (.app bundle) via "ditto" which suddenly is throwing a "Operation not permitted" error in Xcode 14 beta 3. We've had no issues since Xcode 10 with the same script (has never changed): EXTAPP="XXXXXX.com.my.app.ext.app" if [ $CONFIGURATION == Debug ] then  EXTAPP="XXXXXX.com.my.app.ext.app-debug.app" fi TARGET_LOCATION="${BUILT_PRODUCTS_DIR}/MyApp.app/Contents/Library/LoginItems/${EXTAPP}" // FAILS HERE: ditto "${BUILT_PRODUCTS_DIR}/${EXTAPP}" "${TARGET_LOCATION}" echo "Codesign..." SHA="${EXPANDED_CODE_SIGN_IDENTITY}" codesign --preserve-metadata=entitlements --deep --verify --options runtime --force --sign $SHA "${TARGET_LOCATION}" Seeing this error: ditto: ...MyApp.app/Contents/Library/LoginItems/XXXXXX.com.my.app.ext.app-debug.app/Contents: Operation not permitted
1
0
1.1k
Jul ’22