Search results for

“A Summary of the WWDC25 Group Lab”

10,638 results found

Post

Replies

Boosts

Views

Activity

Custom Reports GET API returning 403 Forbidden since March 16, 2026 — POST still works
Hi Apple Developer Community, Since March 16, 2026, our integration with the Apple Ads Campaign Management API (v5) is returning 403 Forbidden on all GET requests to the custom-reports endpoint, while POST requests to create reports continue to work without any issues. Environment API Version: v5 Base URL: https://api.searchads.apple.com/api/v5/ Authentication: OAuth 2.0 (Bearer token — token generation works fine) API User Role: API Account Manager What's broken GET /api/v5/custom-reports/63638557 → 403 Forbidden The response is raw HTML from Apple's gateway, not a JSON API error: 403 Forbidden 403 Forbidden Apple This indicates the request is being blocked at the reverse proxy / infrastructure level and never reaches the API application layer. A proper API-level authorization error would return JSON with messageCode and message fields. What still works POST creates report successfully POST /api/v5/custom-reports → 200 OK Response: { data: { id: 63638557, name: Impression_Share_Report_2026-03-22_daily, s
1
0
82
1w
TestFlight External Build Stuck in 'Waiting for Review' for 32+ Hours
Hi everyone, My TestFlight build has been stuck in 'Waiting for Review' for over 32 hours and I'm hoping someone can help or share their experience. The situation: I have an External Testing group with a Public Link set up. The build was submitted for Beta App Review on March 19th but it's been over 32 hours with no update. I have 25+ testers waiting to install the app. What I've tried: Waited patiently Checked App Store Connect multiple times No rejection emails received No issues flagged by Apple Questions: Is anyone else experiencing unusually long review times for TestFlight external builds right now? Is there anything I can do to speed up the process or check if something is wrong? Has anyone successfully resolved this by contacting Apple Developer Support directly? Any advice would be greatly appreciated. Thank you! Apple Support Case ID: 102846633409
1
0
110
1w
Grant Access - Register GitLab Application - 504 Client Timeout
Dear Xcode cloud support. on 30.1.2026 Xcode cloud was not able to connect to our git server. so I deleted the repository from app store connect Xcode cloud settings and deleted the Xcode cloud in app store connect for all our apps. I started to create Xcode cloud workflow from Xcode and when I want to Grant Access - Register GitLab Application - to our git repository I get and error : 504 Client Timeout. If you are using a firewall, it must be configured to accept incoming connections. git is behind VPN but the IP address ranges 17.58.0.0/18, 17.58.192.0/18, and 57.103.0.0/22 are white labeled and before 30.1.2026 it was working. I contacted the gitlab administrators and they acknowledged that during Register GitLab Application they see no traffic (in gltlab and proxy server) from xcode cloud. I tried Register GitLab Application multiple times until now with same error. It is not app specific because this error happens for all our apps. Thanks a lot yours sincerely, Zoltan Bognar More Info: Source Control Pr
4
0
145
1w
App Store Connect “Missing Metadata” Nightmare: The Solution I Spent HOURS Searching For
I just spent way too many hours trying to figure out why my in-app subscription was stuck in “Missing Metadata” in App Store Connect, even though I had filled out everything. If you're here because you're in the same boat, this is the solution Apple doesn't make obvious. The Problem I created an auto-renewable subscription (Kanabloom Premium) and filled in all required fields. The subscription was still marked Missing Metadata, preventing me from submitting it. The “In-App Purchases” section wasn’t showing up in my App Store version submission, which meant I couldn't even attach the subscription to my app version. I triple-checked the metadata, pricing, tax settings, review screenshot, and even resaved everything, but nothing worked. What I Tried (Before Finding the Fix) Checked that pricing was set up correctly for all countries. Uploaded the required review screenshot for the subscription. Made sure the subscription group existed and was linked properly. Refreshed, logged out/in, and tried differen
3
0
580
1w
Reply to What is the best way to look for latest transaction_id for a given original_transaction_id?
Hello, have you tried calling Get All Subscription Statuses using the original TransactionId? This API returns the status for all of the customer’s subscriptions by their subscription group identifier. On the returned SubscriptionGroupIdentifierItem you can look at lastTransactionsItem to get the most recent transaction and renewal information for an auto-renewable subscription. Then, you can use status to determine the latest status for the user’s subscription.
Topic: App & System Services SubTopic: StoreKit Tags:
1w
Reply to Significant Location Change Event in two apps running on same device
There are no guarantees that SLC events will arrive simultaneously for different apps. First of all, the SLC is a relative distance service. When the app started the request will matter. Then how quickly they have processed the previous event and returned would matter. The load of the app on the main thread (which is the thread these events are delivered by default) will effect how fast the events are delivered to the callback function. And last but not least, the delivery of events to an app is controlled by the system and it will decide when an app, which is already not running in the foreground (at least one of them will be in the background), will receive these events. If the apps are terminated (as opposed to just being suspended in the background), further throttles will apply. In summary, you cannot rely on two apps receiving the events at the same moment. If they do, you should consider those as happy coincidences, and not something to rely on in production.
1w
Reply to Push Notifications not received on app.
There can be many reasons for notifications to not being received. And one would need a lot more details on what is being sent, what is the actual state of the devices, etc., for a meaningful answer as to what could be wrong: you might have an incorrect token for the user the push payload might be incorrect or otherwise malformed for certain pushes the users might have inadvertently turned off your notifications, silenced them, or sent them to daily summaries you are sending silent or low priority pushes that are being throttled If you can share the apns-id of a notification which did not make it to the user (a recent one, within the last couple days, and also share the time and time zone sent), we can take a look to see if the push was delivered at all.
1w
MPS SDPA Attention Kernel Regression on A14-class (M1) in macOS 26.3.1 — Works on A15+ (M2+)
Summary Since macOS 26, our Core ML / MPS inference pipeline produces incorrect results on Mac mini M1 (Macmini9,1, A14-class SoC). The same model and code runs correctly on M2 and newer (A15-class and up). The regression appears to be in the Scaled Dot-Product Attention (SDPA) kernel path in the MPS backend. Environment Affected Mac mini M1 — Macmini9,1 (A14-class) Not affected M2 and newer (A15-class and up) Last known good macOS Sequoia First broken macOS 26 (Tahoe) ? Confirmed broken on macOS 26.3.1 Framework Core ML + MPS backend Language C++ (via CoreML C++ API) Description We ship an audio processing application (VoiceAssist by NoiseWorks) that runs a deep learning model (based on Demucs architecture) via Core ML with the MPS compute unit. On macOS Sequoia this works correctly on all Apple Silicon Macs including M1. After updating to macOS 26 (Tahoe), inference on M1 Macs fails — either producing garbage output or crashing. The same binary, same .mlpackage, same inputs work correctly on M2+. O
1
0
188
1w
Reply to Crash when iterating over CMSensorDataList via NSFastEnumeration
Hi, thanks for the reply! I can attach a redacted crash report below. I've redacted our class and method names, so hopefully that does not make it too difficult to read. As for reproduction, we can reproduce the iteration, but we cannot get it to crash despite hours of testing. This does align with the fact that this crash only happens to a very small subset of users in the field. We are querying for at most 10 minutes of data at a time, with none being older than 3 days. I cannot attach an exact query that produces a crash because we cannot reproduce any crashes, but I can paste some of the logic below. @Published private var dateIntervals: [DateInterval] = [] { didSet { storage.save(intervals: dateIntervals) } } func consumeNextDataBatch(length: TimeInterval) -> AccelerationHistoryBatch { // length is always .minutes(10) dropUnreachableDateIntervals() guard let firstInterval = dateIntervals.first else { return .empty } if firstInterval.duration <= length { // The first interval is shorter then our tar
1w
Reply to TestFlight build visible on macOS but not installable: “Can only be tested on an iOS device” for Mac (Designed for iPad)
Had the same problem, testing an iOS app on macOS via TestFlight which previously worked, did recently stop working. But I found a setting in App Store Connect, under each testing group, that says Test iPhone and iPad Apps on Apple Silicon Macs. Enabling this setting made testing on macOS work again.
1w
Reply to Help with getting info for an WIFI USER EXPERIENCE APP
iOS has a limited set of Wi-Fi APIs. See TN3111 iOS Wi-Fi API overview for a summary of what’s available. Regarding signal strength specifically, I address that head on in iOS Network Signal Strength. In short, you’re unlikely to be able to achieve your goal here. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
1w
The requested app is not available or doesn’t exist.
Hello, I have an internal TestFlight build for my app PewPewApp (Apple ID 6760741808). The build is processed, assigned to an internal group, and the tester invitation is accepted. The build status shows Ready to Test / Testing in App Store Connect. However, installation from TestFlight fails with: “The requested app is not available or doesn’t exist.” Could you please check whether there is an account-level or backend TestFlight distribution issue affecting this app/build? Thank you.
1
0
60
1w
Submission Rejected-5.1.1
Hello all, I've been running into issues with my initial App Review Submission getting rejected, with the following message: Guideline 5.1.1(v) - Legal - Privacy - Data Collection and Storage Issue Description The app still requires users to register or log in to access features that are not account based. Next Steps Revise the app to let users freely access the app's features that are not account based. The app may still require registration for other features that are account based. The app itself is a fairly simple grocery listing/receipt tracking/meal planning tool, in which users can share their groceries/receipts/meals in a group. I've revised my app to allow new users to see the main UI shell without signing in, but object creation is still blocked without account membership. Objects are tied to users-- being able to see what other users in your group have created is the core functionality of the app, and there's literally nothing else it does at the moment-- no offline features yet t
1
0
55
1w
Custom Reports GET API returning 403 Forbidden since March 16, 2026 — POST still works
Hi Apple Developer Community, Since March 16, 2026, our integration with the Apple Ads Campaign Management API (v5) is returning 403 Forbidden on all GET requests to the custom-reports endpoint, while POST requests to create reports continue to work without any issues. Environment API Version: v5 Base URL: https://api.searchads.apple.com/api/v5/ Authentication: OAuth 2.0 (Bearer token — token generation works fine) API User Role: API Account Manager What's broken GET /api/v5/custom-reports/63638557 → 403 Forbidden The response is raw HTML from Apple's gateway, not a JSON API error: 403 Forbidden 403 Forbidden Apple This indicates the request is being blocked at the reverse proxy / infrastructure level and never reaches the API application layer. A proper API-level authorization error would return JSON with messageCode and message fields. What still works POST creates report successfully POST /api/v5/custom-reports → 200 OK Response: { data: { id: 63638557, name: Impression_Share_Report_2026-03-22_daily, s
Replies
1
Boosts
0
Views
82
Activity
1w
Reply to 26.4 beta and RC versions are unable to be created on anything but 26.4 beta host OS
❯ pkgutil --pkg-info-plist com.apple.pkg.MobileDevice groups com.apple.findsystemfiles install-location Library/Apple/ install-time 1772135996 pkg-version 4.0.0.0.1.1762585687 pkgid com.apple.pkg.MobileDevice receipt-plist-version 1 volume / I can't reply in the thread above as a comment due to limited text amount.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
1w
Reply to 26.4 beta and RC versions are unable to be created on anything but 26.4 beta host OS
On my macOS 15.7.4 machine: $ pkgutil --pkg-info-plist com.apple.pkg.MobileDevice groups com.apple.findsystemfiles install-location Library/Apple/ install-time 1771452321 pkg-version 4.0.0.0.1.1762585687 pkgid com.apple.pkg.MobileDevice receipt-plist-version 1 volume /
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
1w
TestFlight External Build Stuck in 'Waiting for Review' for 32+ Hours
Hi everyone, My TestFlight build has been stuck in 'Waiting for Review' for over 32 hours and I'm hoping someone can help or share their experience. The situation: I have an External Testing group with a Public Link set up. The build was submitted for Beta App Review on March 19th but it's been over 32 hours with no update. I have 25+ testers waiting to install the app. What I've tried: Waited patiently Checked App Store Connect multiple times No rejection emails received No issues flagged by Apple Questions: Is anyone else experiencing unusually long review times for TestFlight external builds right now? Is there anything I can do to speed up the process or check if something is wrong? Has anyone successfully resolved this by contacting Apple Developer Support directly? Any advice would be greatly appreciated. Thank you! Apple Support Case ID: 102846633409
Replies
1
Boosts
0
Views
110
Activity
1w
Grant Access - Register GitLab Application - 504 Client Timeout
Dear Xcode cloud support. on 30.1.2026 Xcode cloud was not able to connect to our git server. so I deleted the repository from app store connect Xcode cloud settings and deleted the Xcode cloud in app store connect for all our apps. I started to create Xcode cloud workflow from Xcode and when I want to Grant Access - Register GitLab Application - to our git repository I get and error : 504 Client Timeout. If you are using a firewall, it must be configured to accept incoming connections. git is behind VPN but the IP address ranges 17.58.0.0/18, 17.58.192.0/18, and 57.103.0.0/22 are white labeled and before 30.1.2026 it was working. I contacted the gitlab administrators and they acknowledged that during Register GitLab Application they see no traffic (in gltlab and proxy server) from xcode cloud. I tried Register GitLab Application multiple times until now with same error. It is not app specific because this error happens for all our apps. Thanks a lot yours sincerely, Zoltan Bognar More Info: Source Control Pr
Replies
4
Boosts
0
Views
145
Activity
1w
App Store Connect “Missing Metadata” Nightmare: The Solution I Spent HOURS Searching For
I just spent way too many hours trying to figure out why my in-app subscription was stuck in “Missing Metadata” in App Store Connect, even though I had filled out everything. If you're here because you're in the same boat, this is the solution Apple doesn't make obvious. The Problem I created an auto-renewable subscription (Kanabloom Premium) and filled in all required fields. The subscription was still marked Missing Metadata, preventing me from submitting it. The “In-App Purchases” section wasn’t showing up in my App Store version submission, which meant I couldn't even attach the subscription to my app version. I triple-checked the metadata, pricing, tax settings, review screenshot, and even resaved everything, but nothing worked. What I Tried (Before Finding the Fix) Checked that pricing was set up correctly for all countries. Uploaded the required review screenshot for the subscription. Made sure the subscription group existed and was linked properly. Refreshed, logged out/in, and tried differen
Replies
3
Boosts
0
Views
580
Activity
1w
Reply to What is the best way to look for latest transaction_id for a given original_transaction_id?
Hello, have you tried calling Get All Subscription Statuses using the original TransactionId? This API returns the status for all of the customer’s subscriptions by their subscription group identifier. On the returned SubscriptionGroupIdentifierItem you can look at lastTransactionsItem to get the most recent transaction and renewal information for an auto-renewable subscription. Then, you can use status to determine the latest status for the user’s subscription.
Topic: App & System Services SubTopic: StoreKit Tags:
Replies
Boosts
Views
Activity
1w
Reply to Significant Location Change Event in two apps running on same device
There are no guarantees that SLC events will arrive simultaneously for different apps. First of all, the SLC is a relative distance service. When the app started the request will matter. Then how quickly they have processed the previous event and returned would matter. The load of the app on the main thread (which is the thread these events are delivered by default) will effect how fast the events are delivered to the callback function. And last but not least, the delivery of events to an app is controlled by the system and it will decide when an app, which is already not running in the foreground (at least one of them will be in the background), will receive these events. If the apps are terminated (as opposed to just being suspended in the background), further throttles will apply. In summary, you cannot rely on two apps receiving the events at the same moment. If they do, you should consider those as happy coincidences, and not something to rely on in production.
Replies
Boosts
Views
Activity
1w
Reply to Push Notifications not received on app.
There can be many reasons for notifications to not being received. And one would need a lot more details on what is being sent, what is the actual state of the devices, etc., for a meaningful answer as to what could be wrong: you might have an incorrect token for the user the push payload might be incorrect or otherwise malformed for certain pushes the users might have inadvertently turned off your notifications, silenced them, or sent them to daily summaries you are sending silent or low priority pushes that are being throttled If you can share the apns-id of a notification which did not make it to the user (a recent one, within the last couple days, and also share the time and time zone sent), we can take a look to see if the push was delivered at all.
Replies
Boosts
Views
Activity
1w
MPS SDPA Attention Kernel Regression on A14-class (M1) in macOS 26.3.1 — Works on A15+ (M2+)
Summary Since macOS 26, our Core ML / MPS inference pipeline produces incorrect results on Mac mini M1 (Macmini9,1, A14-class SoC). The same model and code runs correctly on M2 and newer (A15-class and up). The regression appears to be in the Scaled Dot-Product Attention (SDPA) kernel path in the MPS backend. Environment Affected Mac mini M1 — Macmini9,1 (A14-class) Not affected M2 and newer (A15-class and up) Last known good macOS Sequoia First broken macOS 26 (Tahoe) ? Confirmed broken on macOS 26.3.1 Framework Core ML + MPS backend Language C++ (via CoreML C++ API) Description We ship an audio processing application (VoiceAssist by NoiseWorks) that runs a deep learning model (based on Demucs architecture) via Core ML with the MPS compute unit. On macOS Sequoia this works correctly on all Apple Silicon Macs including M1. After updating to macOS 26 (Tahoe), inference on M1 Macs fails — either producing garbage output or crashing. The same binary, same .mlpackage, same inputs work correctly on M2+. O
Replies
1
Boosts
0
Views
188
Activity
1w
Reply to Crash when iterating over CMSensorDataList via NSFastEnumeration
Hi, thanks for the reply! I can attach a redacted crash report below. I've redacted our class and method names, so hopefully that does not make it too difficult to read. As for reproduction, we can reproduce the iteration, but we cannot get it to crash despite hours of testing. This does align with the fact that this crash only happens to a very small subset of users in the field. We are querying for at most 10 minutes of data at a time, with none being older than 3 days. I cannot attach an exact query that produces a crash because we cannot reproduce any crashes, but I can paste some of the logic below. @Published private var dateIntervals: [DateInterval] = [] { didSet { storage.save(intervals: dateIntervals) } } func consumeNextDataBatch(length: TimeInterval) -> AccelerationHistoryBatch { // length is always .minutes(10) dropUnreachableDateIntervals() guard let firstInterval = dateIntervals.first else { return .empty } if firstInterval.duration <= length { // The first interval is shorter then our tar
Replies
Boosts
Views
Activity
1w
Reply to TestFlight build visible on macOS but not installable: “Can only be tested on an iOS device” for Mac (Designed for iPad)
Had the same problem, testing an iOS app on macOS via TestFlight which previously worked, did recently stop working. But I found a setting in App Store Connect, under each testing group, that says Test iPhone and iPad Apps on Apple Silicon Macs. Enabling this setting made testing on macOS work again.
Replies
Boosts
Views
Activity
1w
Reply to Help with getting info for an WIFI USER EXPERIENCE APP
iOS has a limited set of Wi-Fi APIs. See TN3111 iOS Wi-Fi API overview for a summary of what’s available. Regarding signal strength specifically, I address that head on in iOS Network Signal Strength. In short, you’re unlikely to be able to achieve your goal here. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
Replies
Boosts
Views
Activity
1w
The requested app is not available or doesn’t exist.
Hello, I have an internal TestFlight build for my app PewPewApp (Apple ID 6760741808). The build is processed, assigned to an internal group, and the tester invitation is accepted. The build status shows Ready to Test / Testing in App Store Connect. However, installation from TestFlight fails with: “The requested app is not available or doesn’t exist.” Could you please check whether there is an account-level or backend TestFlight distribution issue affecting this app/build? Thank you.
Replies
1
Boosts
0
Views
60
Activity
1w
Submission Rejected-5.1.1
Hello all, I've been running into issues with my initial App Review Submission getting rejected, with the following message: Guideline 5.1.1(v) - Legal - Privacy - Data Collection and Storage Issue Description The app still requires users to register or log in to access features that are not account based. Next Steps Revise the app to let users freely access the app's features that are not account based. The app may still require registration for other features that are account based. The app itself is a fairly simple grocery listing/receipt tracking/meal planning tool, in which users can share their groceries/receipts/meals in a group. I've revised my app to allow new users to see the main UI shell without signing in, but object creation is still blocked without account membership. Objects are tied to users-- being able to see what other users in your group have created is the core functionality of the app, and there's literally nothing else it does at the moment-- no offline features yet t
Replies
1
Boosts
0
Views
55
Activity
1w