Search results for

“build disappears”

51,331 results found

Post

Replies

Boosts

Views

Activity

App stuck in "Waiting for Review" for 5+ days - Version 1.4
Hi everyone, I submitted a new version (1.4) of my app,last Wednesday at 9:02 AM. It has been in the Waiting for Review status for over 5 days now. My previous updates were usually processed within 24-48 hours, so I’m concerned if there might be an issue with this specific build or if there's a general delay in the review queue. Has anyone else experienced similar delays recently? Should I continue to wait, or is it time to contact the App Review team directly?
7
0
217
4w
Frequent System Reboots (bug_type 210) on MacBook Pro with M4 Pro during Emulation Development
Environment: Device: MacBook Pro (Mac16,7) Chip: M4 Pro (SoC ID 6040, Revision 11) OS: macOS 15.2 (24C101) Kernel: Darwin Kernel Version 24.2.0; root:xnu-11215.61.5~2/RELEASE_ARM64_T6041 Summary: I am developing a Windows emulator on the MacBook Pro M4 Pro platform. During testing with certain applications, the system frequently triggers an instantaneous reboot. This issue appears to be highly specific to the M4 Pro hardware and current OS version. Observation & Diagnostic Challenges: Upon reboot, the system generates a bug_type 210 (SoC Watchdog Reset) report. The panic string indicates: Unexpected SoC (system) watchdog reset occurred after panic diagnostics were completed. The primary difficulty in debugging is that the hardware reset happens so rapidly that the kernel fails to capture a stackshot or any detailed panic trace. We have practically no actionable information from the standard diagnostic reports. However, we did find the following recurring entries in the system log prior to the resets: Igno
1
0
241
4w
NSTableViewRowAction do not draw the buttons background in macOS Tahoe
Hello, I developed an Open Source Apple Virtualization + QEMU VM manager for macOS, called MacMulator (GitHub repo here). In my app I have a UITableView containing a list of VMs, and I let the user delete or configure a VM through a 2 finger swipe on the corresponding table row. To do this, I added 2 NSTableViewRowActions to my NSTableView, through this code: func tableView(_: NSTableView, rowActionsForRow _: Int, edge _: NSTableView.RowActionEdge) -> [NSTableViewRowAction] { [ NSTableViewRowAction(style: NSTableViewRowAction.Style.destructive, title: NSLocalizedString(VirtualMachineListViewController.delete, comment: ), handler: { _, index in self.deleteVirtualMachine(index) }), NSTableViewRowAction(style: NSTableViewRowAction.Style.regular, title: NSLocalizedString(VirtualMachineListViewController.edit, comment: ), handler: { _, index in self.editVirtualMachine(index) }), ] } This actions work fine, but on macOS Tahoe the UI does not draw the background of the 2 buttons, despite the style. The same build
Topic: UI Frameworks SubTopic: General
1
0
113
4w
Unusually long “Waiting for review” status, anyone experiencing the same?
Hello everyone, I’m currently experiencing significantly longer than usual review times and wanted to check if others are seeing similar delays recently. Here’s the timeline of my submissions so far: [Feb 5] Initial submission (Submit #1) [Feb 10] Sent expedited review request #1 [Feb 11] Canceled and resubmitted (Submit #2) [Feb 21] Canceled again → Uploaded new build → Resubmitted (Submit #3) [Feb 24] Sent expedited review request #2 My apple ID: 6757330278 The app has remained in “Waiting for Review” for an unusually long period across multiple submissions. Even after submitting two expedite requests, there hasn’t been any updates or response yet. What’s confusing is that I see other apps getting approved during the same timeframe, so I’m unsure whether this is: A broader review backlog A regional queue issue Or something specific to my account/app I’m just hoping to understand whether this is a widespread situation at the moment. If anyone has experienced similar delays recently, I’d really appre
1
0
173
Mar ’26
[HELP] Xcode unable to connect to multiple devices, stuck on "Connecting to 's iPhone"
Hello, I've been searching online for ways to remedy this issue for the past 3 days and this is my last resort. The Issue Build on device fails to connect to the device. The prompt will permanently be stuck loading in that screen. Finder is able to connect to the device, just that Xcode is unable to. Xcode does prompt for passcode on the device, and I have entered it accordingly. I note that i AM on VPN, but even disabling VPN and turning off Wifi does not fix the issue. This was working until several days ago. Not sure what the issue is. Fixes Attempted Tried with a different cable, and USB ports Tried with different devices (multiple devices both iPad and iPhone has the same issue) Turn Off and On developer mode on devices. Clear Trusted Computers on devices. Updating both devices to the latest iOS version. Quitting Xcode Clearing derived cache Restarting Macbook Updating to the latest iOS version on Macbook Reinstalling Xcode toggling signing certificates I was trying other fixes like pkill usbmux
1
0
58
Mar ’26
App stuck in “Waiting for Review” for 3+ weeks (Case ID: 20000107493507)
Hi everyone, My iOS app “TaskCal: Task Manager” (version 1.2.8) has been stuck in “Waiting for Review” for more than 3 weeks, and I’m not sure what else I can do at this point. Here are the key dates (GMT+8): Jan 30, 2026 – Version 1.2.3 was approved and marked “Ready for Distribution”. Jan 31 – Feb 8, 2026 – I submitted version 1.2.8 multiple times. Several submissions were later marked as “Removed” in App Store Connect. Feb 9, 2026, 12:39 AM – I submitted version 1.2.8 again. This submission has been in “Waiting for Review” ever since. Today is Mar 3, 2026 (Taipei time) – The status is still “Waiting for Review” with no change. Because of this, I contacted Apple Developer Support multiple times through Contact Support. I only received one reply, on Feb 21, 2026, which said: Hello Alan, Thank you for reaching out to Developer Support about your app, “TaskCal: Task Manager.” I understand that you’re concerned. After reviewing your app’s submission history, I can confirm that your apps is still in the “Waiting
2
0
223
Mar ’26
Reply to Can't enable an iOS Driverkit driver when using an older app ID
This post was a godsend for me while trying to implement automatically generated date-based build numbers. For you (and any future beneficiaries), please file a bug about this and then post the bug number back here. There are couple of kernel specific limitation like this (bundle ID length is the other) and Xcode should probably have a check in place that prevents/warns about this. __ Kevin Elliott DTS Engineer, CoreOS/Hardware
Mar ’26
Reply to Can't enable an iOS Driverkit driver when using an older app ID
This post was a godsend for me while trying to implement automatically generated date-based build numbers. For anyone who wants to fit date-based versioning into this parse, the following format will work: BUILD_NUMBER=$(date '+%Y.%m%d.%H%Mf%S') This generates a version in the format 2026.0303.1749f09 The f in there is arbitrary; I picked it because it's the closest to s in shape.
Mar ’26
Reply to Driver Activation failure error code 9. Maybe Entitlements? Please help
Hello again, Kevin, and thank you again for your help. I notice that you commented 18 hrs ago, but I could have sworn I checked yesterday and there wasn't anything here. I ended up getting matching working by also specifying version number, which increased my probe score. And... you should also be aware of the version number limitation described here, which is another arbitrary restriction the kernel enforces. you definitely predicted my next issue. I prefer date-based build and version numbers, and this one was problematic, but your link helped me fit a date based number into that parsing code. If anyone else wants to try that, I used BUILD_NUMBER=$(date '+%Y.%m%d.%H%Mf%S') in my update script, which yields a version number e.g. 2026.0303.1749f09. The arbitrary f enables me to get past that 4[letter]3 format. I picked f only because it looks similar to an s. Before I move onto my current problem... Can you do that, perhaps by operating at the device instead of interface level? Could you explain what
Topic: App & System Services SubTopic: Drivers Tags:
Mar ’26
First Auto-Renewable Subscription – getSubscriptions returns empty in TestFlight
Hi, I am submitting auto-renewable subscriptions for the first time for a brand new iOS app (never approved before). Setup: App ID has In-App Purchase capability enabled Subscriptions created under a subscription group All metadata (pricing, localization, availability) completed Subscriptions currently show In Review Testing via TestFlight build Bundle ID matches App Store Connect Using react-native-iap (StoreKit under the hood) When calling: await getSubscriptions({ skus }) I consistently get: products fetched: 0 ProductsUnavailableError Also, the app version page does not show the “In-App Purchases and Subscriptions” section. Question: For a brand new app, will StoreKit return empty products while the first subscriptions are in review? Do the first subscriptions need to be approved and/or attached to a new app version before they become available in TestFlight sandbox? Thanks for any clarification.
1
0
92
Mar ’26
Rapport de Bug : Problème Entitlements Family Controls / EAS Build
Le build iOS via EAS échoue systématiquement lors de la phase Xcode. Bien que les capacités Family Controls et App Groups soient activées sur le portail Apple Developer et configurées dans le app.json, les profils de provisionnement générés par EAS sont rejetés par Xcode car ils ne contiendraient pas les droits nécessaires. Configuration du projet : Targets (4) : App principale + 3 extensions (ShieldConfiguration, ShieldAction, ActivityMonitorExtension). Capabilities requises : Family Controls (Development), App Groups. EAS CLI Version : 18.0.6 (et versions antérieures testées). Erreur Xcode récurrente : error: Provisioning profile [expo] com.*****.*** AdHoc 177230... doesn't support the Family Controls (Development) capability.. error: Provisioning profile ... AdHoc ... doesn't include the com.apple.developer.family-controls entitlement.. Ce qui a déjà été tenté (sans succès) : Configuration app.json : Ajout manuel des entitlements pour le bundle principal et configuration du plugin react-native-dev
1
0
72
Mar ’26
Data Persistence not functioning upon refresh
Hello, I am attempting to implement a simple button that loads persistent data from a class (see below). Button(Reload Data) { while tableData2.isEmpty == false{ tableData2.remove(at: 0) } while tableView.isEmpty == false{ tableView.remove(at: 0) } //update if csvData.isEmpty == false{ for superRow in csvData[0].tableData2{ tableData2.append(superRow) } for supperRow in csvData[0].tableView{ tableView.append(supperRow) } print(Item at 0: (csvData[0].tableData2[[0][0]])) print((tableData2[0][0])) } else { print(csvData is empty) } } This button DOES work to appropriately print the data stored at the printed location once loaded in initially. The problem is that it doesn’t work across app restarts, which is the whole point of the button. Below I will include the rest of the relevant code with notes: In contentView declaring the persistant variables: Query private var csvData: [csvDataPersist] Environment(.modelContext) private var modelContext The simple class of data I’m storing/pulling to/from: @Model class c
3
0
103
Mar ’26
Reply to Data Persistence not functioning upon refresh
UPDATE: Fix: Deleting/commenting out the sharedModelContainer in the 4th code block above, cleaning the build, and restarting my computer seems to have done the trick. What I've been told, applying two .modelContainer modifiers on the same WindowGroup was what was causing me the trouble.
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Mar ’26
Reply to Any FSKit sample available from Apple?
I have tried passthrough file system fskit sample (https://developer.apple.com/documentation/fskit/building-a-passthrough-file-system) and got the same error as the mount hangs. The log has the following message: fskitd: [com.apple.FSKit:default] Hello FSClient! entitlement no Not sure if it is related to the hang. And a kernel extension certificate is used to sign the passthrough file system extension. Does it need to be signed? If so, what signing certificate is needed?
Topic: App & System Services SubTopic: Core OS Tags:
Mar ’26
App stuck in "Waiting for Review" for 5+ days - Version 1.4
Hi everyone, I submitted a new version (1.4) of my app,last Wednesday at 9:02 AM. It has been in the Waiting for Review status for over 5 days now. My previous updates were usually processed within 24-48 hours, so I’m concerned if there might be an issue with this specific build or if there's a general delay in the review queue. Has anyone else experienced similar delays recently? Should I continue to wait, or is it time to contact the App Review team directly?
Replies
7
Boosts
0
Views
217
Activity
4w
Frequent System Reboots (bug_type 210) on MacBook Pro with M4 Pro during Emulation Development
Environment: Device: MacBook Pro (Mac16,7) Chip: M4 Pro (SoC ID 6040, Revision 11) OS: macOS 15.2 (24C101) Kernel: Darwin Kernel Version 24.2.0; root:xnu-11215.61.5~2/RELEASE_ARM64_T6041 Summary: I am developing a Windows emulator on the MacBook Pro M4 Pro platform. During testing with certain applications, the system frequently triggers an instantaneous reboot. This issue appears to be highly specific to the M4 Pro hardware and current OS version. Observation & Diagnostic Challenges: Upon reboot, the system generates a bug_type 210 (SoC Watchdog Reset) report. The panic string indicates: Unexpected SoC (system) watchdog reset occurred after panic diagnostics were completed. The primary difficulty in debugging is that the hardware reset happens so rapidly that the kernel fails to capture a stackshot or any detailed panic trace. We have practically no actionable information from the standard diagnostic reports. However, we did find the following recurring entries in the system log prior to the resets: Igno
Replies
1
Boosts
0
Views
241
Activity
4w
Reply to App stuck in "Waiting for review", no contact since Feb 12th
Still no w word from apple unfortunately… what’s really sad is that even my external build is stuck too! even that would allow me to get some feedback. any tips for getting external builds approved?
Replies
Boosts
Views
Activity
4w
NSTableViewRowAction do not draw the buttons background in macOS Tahoe
Hello, I developed an Open Source Apple Virtualization + QEMU VM manager for macOS, called MacMulator (GitHub repo here). In my app I have a UITableView containing a list of VMs, and I let the user delete or configure a VM through a 2 finger swipe on the corresponding table row. To do this, I added 2 NSTableViewRowActions to my NSTableView, through this code: func tableView(_: NSTableView, rowActionsForRow _: Int, edge _: NSTableView.RowActionEdge) -> [NSTableViewRowAction] { [ NSTableViewRowAction(style: NSTableViewRowAction.Style.destructive, title: NSLocalizedString(VirtualMachineListViewController.delete, comment: ), handler: { _, index in self.deleteVirtualMachine(index) }), NSTableViewRowAction(style: NSTableViewRowAction.Style.regular, title: NSLocalizedString(VirtualMachineListViewController.edit, comment: ), handler: { _, index in self.editVirtualMachine(index) }), ] } This actions work fine, but on macOS Tahoe the UI does not draw the background of the 2 buttons, despite the style. The same build
Topic: UI Frameworks SubTopic: General
Replies
1
Boosts
0
Views
113
Activity
4w
Unusually long “Waiting for review” status, anyone experiencing the same?
Hello everyone, I’m currently experiencing significantly longer than usual review times and wanted to check if others are seeing similar delays recently. Here’s the timeline of my submissions so far: [Feb 5] Initial submission (Submit #1) [Feb 10] Sent expedited review request #1 [Feb 11] Canceled and resubmitted (Submit #2) [Feb 21] Canceled again → Uploaded new build → Resubmitted (Submit #3) [Feb 24] Sent expedited review request #2 My apple ID: 6757330278 The app has remained in “Waiting for Review” for an unusually long period across multiple submissions. Even after submitting two expedite requests, there hasn’t been any updates or response yet. What’s confusing is that I see other apps getting approved during the same timeframe, so I’m unsure whether this is: A broader review backlog A regional queue issue Or something specific to my account/app I’m just hoping to understand whether this is a widespread situation at the moment. If anyone has experienced similar delays recently, I’d really appre
Replies
1
Boosts
0
Views
173
Activity
Mar ’26
[HELP] Xcode unable to connect to multiple devices, stuck on "Connecting to 's iPhone"
Hello, I've been searching online for ways to remedy this issue for the past 3 days and this is my last resort. The Issue Build on device fails to connect to the device. The prompt will permanently be stuck loading in that screen. Finder is able to connect to the device, just that Xcode is unable to. Xcode does prompt for passcode on the device, and I have entered it accordingly. I note that i AM on VPN, but even disabling VPN and turning off Wifi does not fix the issue. This was working until several days ago. Not sure what the issue is. Fixes Attempted Tried with a different cable, and USB ports Tried with different devices (multiple devices both iPad and iPhone has the same issue) Turn Off and On developer mode on devices. Clear Trusted Computers on devices. Updating both devices to the latest iOS version. Quitting Xcode Clearing derived cache Restarting Macbook Updating to the latest iOS version on Macbook Reinstalling Xcode toggling signing certificates I was trying other fixes like pkill usbmux
Replies
1
Boosts
0
Views
58
Activity
Mar ’26
App stuck in “Waiting for Review” for 3+ weeks (Case ID: 20000107493507)
Hi everyone, My iOS app “TaskCal: Task Manager” (version 1.2.8) has been stuck in “Waiting for Review” for more than 3 weeks, and I’m not sure what else I can do at this point. Here are the key dates (GMT+8): Jan 30, 2026 – Version 1.2.3 was approved and marked “Ready for Distribution”. Jan 31 – Feb 8, 2026 – I submitted version 1.2.8 multiple times. Several submissions were later marked as “Removed” in App Store Connect. Feb 9, 2026, 12:39 AM – I submitted version 1.2.8 again. This submission has been in “Waiting for Review” ever since. Today is Mar 3, 2026 (Taipei time) – The status is still “Waiting for Review” with no change. Because of this, I contacted Apple Developer Support multiple times through Contact Support. I only received one reply, on Feb 21, 2026, which said: Hello Alan, Thank you for reaching out to Developer Support about your app, “TaskCal: Task Manager.” I understand that you’re concerned. After reviewing your app’s submission history, I can confirm that your apps is still in the “Waiting
Replies
2
Boosts
0
Views
223
Activity
Mar ’26
Reply to Can't enable an iOS Driverkit driver when using an older app ID
This post was a godsend for me while trying to implement automatically generated date-based build numbers. For you (and any future beneficiaries), please file a bug about this and then post the bug number back here. There are couple of kernel specific limitation like this (bundle ID length is the other) and Xcode should probably have a check in place that prevents/warns about this. __ Kevin Elliott DTS Engineer, CoreOS/Hardware
Replies
Boosts
Views
Activity
Mar ’26
Reply to Can't enable an iOS Driverkit driver when using an older app ID
This post was a godsend for me while trying to implement automatically generated date-based build numbers. For anyone who wants to fit date-based versioning into this parse, the following format will work: BUILD_NUMBER=$(date '+%Y.%m%d.%H%Mf%S') This generates a version in the format 2026.0303.1749f09 The f in there is arbitrary; I picked it because it's the closest to s in shape.
Replies
Boosts
Views
Activity
Mar ’26
Reply to Driver Activation failure error code 9. Maybe Entitlements? Please help
Hello again, Kevin, and thank you again for your help. I notice that you commented 18 hrs ago, but I could have sworn I checked yesterday and there wasn't anything here. I ended up getting matching working by also specifying version number, which increased my probe score. And... you should also be aware of the version number limitation described here, which is another arbitrary restriction the kernel enforces. you definitely predicted my next issue. I prefer date-based build and version numbers, and this one was problematic, but your link helped me fit a date based number into that parsing code. If anyone else wants to try that, I used BUILD_NUMBER=$(date '+%Y.%m%d.%H%Mf%S') in my update script, which yields a version number e.g. 2026.0303.1749f09. The arbitrary f enables me to get past that 4[letter]3 format. I picked f only because it looks similar to an s. Before I move onto my current problem... Can you do that, perhaps by operating at the device instead of interface level? Could you explain what
Topic: App & System Services SubTopic: Drivers Tags:
Replies
Boosts
Views
Activity
Mar ’26
First Auto-Renewable Subscription – getSubscriptions returns empty in TestFlight
Hi, I am submitting auto-renewable subscriptions for the first time for a brand new iOS app (never approved before). Setup: App ID has In-App Purchase capability enabled Subscriptions created under a subscription group All metadata (pricing, localization, availability) completed Subscriptions currently show In Review Testing via TestFlight build Bundle ID matches App Store Connect Using react-native-iap (StoreKit under the hood) When calling: await getSubscriptions({ skus }) I consistently get: products fetched: 0 ProductsUnavailableError Also, the app version page does not show the “In-App Purchases and Subscriptions” section. Question: For a brand new app, will StoreKit return empty products while the first subscriptions are in review? Do the first subscriptions need to be approved and/or attached to a new app version before they become available in TestFlight sandbox? Thanks for any clarification.
Replies
1
Boosts
0
Views
92
Activity
Mar ’26
Rapport de Bug : Problème Entitlements Family Controls / EAS Build
Le build iOS via EAS échoue systématiquement lors de la phase Xcode. Bien que les capacités Family Controls et App Groups soient activées sur le portail Apple Developer et configurées dans le app.json, les profils de provisionnement générés par EAS sont rejetés par Xcode car ils ne contiendraient pas les droits nécessaires. Configuration du projet : Targets (4) : App principale + 3 extensions (ShieldConfiguration, ShieldAction, ActivityMonitorExtension). Capabilities requises : Family Controls (Development), App Groups. EAS CLI Version : 18.0.6 (et versions antérieures testées). Erreur Xcode récurrente : error: Provisioning profile [expo] com.*****.*** AdHoc 177230... doesn't support the Family Controls (Development) capability.. error: Provisioning profile ... AdHoc ... doesn't include the com.apple.developer.family-controls entitlement.. Ce qui a déjà été tenté (sans succès) : Configuration app.json : Ajout manuel des entitlements pour le bundle principal et configuration du plugin react-native-dev
Replies
1
Boosts
0
Views
72
Activity
Mar ’26
Data Persistence not functioning upon refresh
Hello, I am attempting to implement a simple button that loads persistent data from a class (see below). Button(Reload Data) { while tableData2.isEmpty == false{ tableData2.remove(at: 0) } while tableView.isEmpty == false{ tableView.remove(at: 0) } //update if csvData.isEmpty == false{ for superRow in csvData[0].tableData2{ tableData2.append(superRow) } for supperRow in csvData[0].tableView{ tableView.append(supperRow) } print(Item at 0: (csvData[0].tableData2[[0][0]])) print((tableData2[0][0])) } else { print(csvData is empty) } } This button DOES work to appropriately print the data stored at the printed location once loaded in initially. The problem is that it doesn’t work across app restarts, which is the whole point of the button. Below I will include the rest of the relevant code with notes: In contentView declaring the persistant variables: Query private var csvData: [csvDataPersist] Environment(.modelContext) private var modelContext The simple class of data I’m storing/pulling to/from: @Model class c
Replies
3
Boosts
0
Views
103
Activity
Mar ’26
Reply to Data Persistence not functioning upon refresh
UPDATE: Fix: Deleting/commenting out the sharedModelContainer in the 4th code block above, cleaning the build, and restarting my computer seems to have done the trick. What I've been told, applying two .modelContainer modifiers on the same WindowGroup was what was causing me the trouble.
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Mar ’26
Reply to Any FSKit sample available from Apple?
I have tried passthrough file system fskit sample (https://developer.apple.com/documentation/fskit/building-a-passthrough-file-system) and got the same error as the mount hangs. The log has the following message: fskitd: [com.apple.FSKit:default] Hello FSClient! entitlement no Not sure if it is related to the hang. And a kernel extension certificate is used to sign the passthrough file system extension. Does it need to be signed? If so, what signing certificate is needed?
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Mar ’26