Search results for

“DTiPhoneSimulatorErrorDomain Code 2”

162,376 results found

Post

Replies

Boosts

Views

Activity

Reply to Keychain Group
[quote='887425022, iceboy, /thread/825789?answerId=887425022#887425022, /profile/iceboy'] it cannot be debugged. [/quote] Why is that? [quote='887425022, iceboy, /thread/825789?answerId=887425022#887425022, /profile/iceboy'] The same IPA file is installed on both this problematic device and the normally functioning devices. [/quote] How do you create that .ipa? The usual process for doing that is to export an Ad Hoc signed version of your app. If that’s the case then you can export a Development signed version from the some Xcode archive. At that point you have an exact some copy of the code that you can run and debug with Xcode. Just to be sure, you should check the keychain entitlements for each build. The .ipa is a zip archive under the covers, so you can change the extension to .zip and unpack it. Once you do that, dump the entitlements like so: % codesign -d --entitlements - /path/to/my.app Then use the same command to dump the entitlements of the Development signed version. Finally, compare the
Topic: Privacy & Security SubTopic: General Tags:
2w
Reply to Issues with TCP Socket Management and Ghost Data on ESP32 (Swift)
You’re using the term socket as a synonym for network connection. That’s not correct, and it muddies the waters when it comes to how to approach this problem. For example, one of your issues relates to connection viability, and the best way to handle that problem varies depending on whether you’re using the BSD Sockets API or the Network framework API. [quote='826000021, Gabriel_Heidemann, /thread/826000, /profile/Gabriel_Heidemann'] Is it possible to keep this TCP connection active in the background indefinitely on iOS while the user interacts with other apps? [/quote] No. See iOS Background Execution Limits. [quote='826000021, Gabriel_Heidemann, /thread/826000, /profile/Gabriel_Heidemann'] Invalid Outbound Data … My logs show strange character sequences (like gggggggggfdhj or vfgdddddddddddtty) being sent involuntarily. [/quote] It’s very unlikely that’s being generated by Network framework. The majority of times when I see problems like this it’s because the app itself is sending that junk, usually because
2w
Reply to 4 notarytool submissions stuck "In Progress" 12+ hours (Team NS22D2XK8A)
[quote='826119021, acabezasg, /thread/826119, /profile/acabezasg'] I have read the other recent stuck In Progress threads from new Developer IDs [/quote] You’ve probably seen my standard response to this, but I’ve included it below just in case other folks stumble across this thread. [quote='826119021, acabezasg, /thread/826119, /profile/acabezasg'] Could the queue be unblocked [/quote] The queue is not blocked. (When something actually goes wrong with notary, the forums light up like a Christmas tree.) [quote='826119021, acabezasg, /thread/826119, /profile/acabezasg'] or is there a team-side configuration that needs flipping? [/quote] It’s not that simple. I can’t offer detailed insight into the “in-depth analysis” case, but my experience, based on talking with many developers here on the forums, is that it usually clears in a day or two. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com You can expect that most uploads will be notar
Topic: Code Signing SubTopic: Notarization Tags:
2w
Reply to MSAL login with Developer ID signed app
DevForums is primarily focused on Apple APIs and tools, so I can’t offer specific help with this issue. It’s possible that another third-party developer has seen this before and can help you. If not, I recommend that you seek help via the support channel for the library you’re using. However, I can address this: [quote='826107021, szigetics_nt, /thread/826107, /profile/szigetics_nt'] The problem seems to be that such keychain access groups access cannot be configured for Developer ID signed applications. [/quote] There’s a bunch to unpack here. First up, macOS has multiple keychain implementations. For the details, see TN3137 On Mac keychain APIs and implementations. Keychain access groups imply that you’re using the data protection keychain. Second, the data protection keychain is available to directly distributed programs that use Developer ID signing. See the intersection of the Keychain Sharing row and the Developer ID column in the table in Developer Account Help > Reference > Supported capabilitie
2w
iphone device initiates data path termination in 2.5 seconds while trying to connect our wifi device via wifiaware peer to peer app
model : iphone 17 ios version: 26.2 app used: https://developer.apple.com/documentation/wifiaware/building-peer-to-peer-apps Here is our observation when we tried to make wifi aware connection between iphone and our wifi device. note : we used iphone as subscriber ( view simulation) 1.pairing & bootstrapping was successfully done 2.Data path was successfully established between iphone and our device. after data path establishment ,within few seconds , DATA PATH TERMINATION was sent from iphone which leads to pairing verification with new NMI address. Same behaviour is noticed even when we try to establish connection between two iphone devices. Here we have few questions. Once we establish data path , Why iphone initiates data path termination instead using the same service for data path exchange. 2.Why do we go for PAIRING VERIFICATION everytime.
5
0
385
2w
Reply to iphone device initiates data path termination in 2.5 seconds while trying to connect our wifi device via wifiaware peer to peer app
Are you seeing this with the latest versions of iOS? So iOS 26.4.2 or the iOS 26.5 beta? We tried with different iOS versions & here is our observation. till iOS 26.3 -Pairing setup & DP establishment fails iOS 26.4 & above -Pairing setup works, DP esatablishment fails when iphone act as Subscriber. We need clarifications for below. 1.If the first service is intended only for Pairing setup, when do we need to go for DP establishment and then disconnection? 2.Once data path is established how is the negotiation on what type of service and on which port data needs to be exchanged. 3.Is a separate platform specific service (in our case linux) implementation required to exchange data once NDP is established with the 2nd service. Thanks, Sangeetha.G
2w
"Unable to Manage Sandbox Test Account - Popup Closes on 'Manage' Click"
Issue: Sandbox test account stuck in a loop when trying to access account management Environment: iOS version: [iOS 26.4.2] Device: iPhone 12 Steps to Reproduce: Created sandbox test credentials on Apple Developer site (App Store Connect → Users and Access → Sandbox → Testers) On iPhone, navigated to Settings → Developer → Sandbox Apple Account Clicked Sign In and entered sandbox test email and password Successfully verified using verification codes (both email and phone number) Clicked on the signed-in sandbox account A popup appears with Manage option Clicked Manage Expected Behavior:- Should open sandbox account management interface Actual Behavior:- Popup immediately closes and the same popup reappears. Clicking Manage again produces the same result - an endless loop preventing access to account management. Has anyone encountered this issue with sandbox test accounts? Is there a known workaround or fix for this behavior?
1
0
153
2w
Reply to StoreKit 2: Transaction.all and Transaction.currentEntitlements return empty for valid non-consumable purchases in production
We have updated the app to StoreKit 2 and submitted it to the App Store. It's already been approved, and everything is working perfectly with real users. Regarding the other app, the user who experienced problems reported that restarting their iPhone resolved the issue and restored all in-app purchases. It seems the problem is solved for us.
Topic: App & System Services SubTopic: StoreKit Tags:
2w
StoreKit 2: Transaction.all and Transaction.currentEntitlements return empty for valid non-consumable purchases in production
FB: https://feedbackassistant.apple.com/feedback/22556883 We're seeing a small number of production users where both Transaction.currentEntitlements and Transaction.all return zero transactions for a valid, active, non-refunded non-consumable IAP. This makes it impossible to restore the purchase via any StoreKit 2 API. Environment: Xcode 26.4 (Build 17E192) iOS 26.4.1 Direct call to SK2 Transactions.all & Flutter in_app_purchase package v3.2.3 (uses SK2 on iOS 15+) Non-consumable IAP (one-time purchase) What we observe: AppStore.sync() triggers but the purchase stream returns 0 transactions Transaction.all returns empty Transaction.currentEntitlements also returns empty User is confirmed on the correct Apple ID Issue reproduces on both iPhone and Mac for the same Apple ID Issue appears to have started recently for users who previously had no problems Debug log from affected production user: [2026-04-20T08:50:10.744115Z] init: iapAvailable=true [2026-04-20T08:50:10.744566Z] init: isPremium=false [
19
0
1.4k
2w
TestFlight External Build Stuck in "Waiting for Review" for Over 2 Weeks - iOS App
Hi everyone, I'm experiencing an unusually long wait time for my TestFlight external build review and wanted to see if others are facing similar issues in 2026. Current Status: Platform: iOS App Version: 1.2.90 (Build 24) Build Type: TestFlight External Testing Current Status: In Review - not Waiting for Review Time in Current Status: Over 2 weeks Submission Timeline: Current Submission: Wednesday at 9:49 AM (iOS 1.2.90 Build 24) Previous Submission: March 9, 2026 at 2:20 PM (iOS 1.2.90 Build 11) - Status: Completed (Rejected) Full History: March 9, 2026 2:20 PM - Initial submission (Build 11) March 15, 2026 5:25 AM - Rejection from Apple March 24 - April 15, 2026 - Multiple back-and-forth communications (5 messages total) April 15, 2026 2:22 PM - Last response from Apple Recent (Wednesday 9:49 AM) - Resubmitted new build (Build 24) Current - Still In Review after 2+ weeks What I've Tried: ✅ Addressed all rejection issues from the previous review ✅ Submitted a new
1
0
388
2w
Reply to Why I can't test the app on my own device even if I signed it with a valid development certificate
Thanks for the detailed explanation. I checked the Signing & Capabilities settings and enabled Automatically manage signing with my Apple Developer account selected. I’ll also inspect the Frameworks, Libraries, and Embedded Content section to make sure the third-party frameworks are set correctly. I’m going to paste the full console warnings/errors below so it’s easier to identify which framework is causing the issue. Domain: LaunchExecutableValidationErrorDomain Code: 1 Recovery Suggestion: Sign the executable with a valid certificate and provisioning profile. User Info: { DVTErrorCreationDateKey = 2026-05-13 02:48:15 +0000; IDERunOperationFailingWorker = IDEInstallCoreDeviceWorker; } -- Unable to Install “PaperHub” Domain: MIInstallerErrorDomain Code: 13 Recovery Suggestion: Failed to verify code signature of /var/installd/Library/Caches/com.apple.mobile.installd.staging/temp.FNhy2z/extracted/IGCSEPastPapers.app : 0xe800801c (No code signature found.) -- Failed to ins
2w
Reply to Apple Developer Support, please respond! I need your help
Today is Day 24. Still nothing. All work at my company has now stopped due to this bottleneck. Every day is filled with anxiety and worry over this specific issue. I can't believe Apple does this to their developers after charging them a developer fee. Apple Developer Support - please help. After 24 days, my request to remove the status code 7000 block has ended up in a black hole from which no updates or resolution seems to be provided. I formed an LLC to make & distribute mac apps, only to run right into a brick wall from which no resolution is being provided. This is dream-crushing.
2w
Apple Developer Support, please respond! I need your help
(Note: I don't need DTS support. This is not a DTS issue, and the standard responses aren't relevant to the situation. I would ask that DTS not respond in lieu of the developer support official) Yesterday, a poster in this forum wrote about his experience waiting several months to get approved to have his apps notarized. He had hit the status code 7000; Team ID not configured for notarization block. An Apple Developer Support account responded to him saying they would help the poster. After a month of waiting and praying for Developer Support to approve my Team ID for notarization, and no progress via the official channels, I am rolling the dice that asking Developer Support here will get my account approved or at least moved forward. I just can't wrap my head around why it takes so long to allow a Team ID to submit apps for notarization. My Team ID is V67NRZ84A2, and my support ticket is 102874600970. Spending months and months developing an app, paying the Developer Support annual fee, and then hav
1
0
84
2w
Reply to Keychain Group
[quote='887425022, iceboy, /thread/825789?answerId=887425022#887425022, /profile/iceboy'] it cannot be debugged. [/quote] Why is that? [quote='887425022, iceboy, /thread/825789?answerId=887425022#887425022, /profile/iceboy'] The same IPA file is installed on both this problematic device and the normally functioning devices. [/quote] How do you create that .ipa? The usual process for doing that is to export an Ad Hoc signed version of your app. If that’s the case then you can export a Development signed version from the some Xcode archive. At that point you have an exact some copy of the code that you can run and debug with Xcode. Just to be sure, you should check the keychain entitlements for each build. The .ipa is a zip archive under the covers, so you can change the extension to .zip and unpack it. Once you do that, dump the entitlements like so: % codesign -d --entitlements - /path/to/my.app Then use the same command to dump the entitlements of the Development signed version. Finally, compare the
Topic: Privacy & Security SubTopic: General Tags:
Replies
Boosts
Views
Activity
2w
Reply to Issues with TCP Socket Management and Ghost Data on ESP32 (Swift)
You’re using the term socket as a synonym for network connection. That’s not correct, and it muddies the waters when it comes to how to approach this problem. For example, one of your issues relates to connection viability, and the best way to handle that problem varies depending on whether you’re using the BSD Sockets API or the Network framework API. [quote='826000021, Gabriel_Heidemann, /thread/826000, /profile/Gabriel_Heidemann'] Is it possible to keep this TCP connection active in the background indefinitely on iOS while the user interacts with other apps? [/quote] No. See iOS Background Execution Limits. [quote='826000021, Gabriel_Heidemann, /thread/826000, /profile/Gabriel_Heidemann'] Invalid Outbound Data … My logs show strange character sequences (like gggggggggfdhj or vfgdddddddddddtty) being sent involuntarily. [/quote] It’s very unlikely that’s being generated by Network framework. The majority of times when I see problems like this it’s because the app itself is sending that junk, usually because
Replies
Boosts
Views
Activity
2w
Reply to 4 notarytool submissions stuck "In Progress" 12+ hours (Team NS22D2XK8A)
[quote='826119021, acabezasg, /thread/826119, /profile/acabezasg'] I have read the other recent stuck In Progress threads from new Developer IDs [/quote] You’ve probably seen my standard response to this, but I’ve included it below just in case other folks stumble across this thread. [quote='826119021, acabezasg, /thread/826119, /profile/acabezasg'] Could the queue be unblocked [/quote] The queue is not blocked. (When something actually goes wrong with notary, the forums light up like a Christmas tree.) [quote='826119021, acabezasg, /thread/826119, /profile/acabezasg'] or is there a team-side configuration that needs flipping? [/quote] It’s not that simple. I can’t offer detailed insight into the “in-depth analysis” case, but my experience, based on talking with many developers here on the forums, is that it usually clears in a day or two. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com You can expect that most uploads will be notar
Topic: Code Signing SubTopic: Notarization Tags:
Replies
Boosts
Views
Activity
2w
Reply to MSAL login with Developer ID signed app
DevForums is primarily focused on Apple APIs and tools, so I can’t offer specific help with this issue. It’s possible that another third-party developer has seen this before and can help you. If not, I recommend that you seek help via the support channel for the library you’re using. However, I can address this: [quote='826107021, szigetics_nt, /thread/826107, /profile/szigetics_nt'] The problem seems to be that such keychain access groups access cannot be configured for Developer ID signed applications. [/quote] There’s a bunch to unpack here. First up, macOS has multiple keychain implementations. For the details, see TN3137 On Mac keychain APIs and implementations. Keychain access groups imply that you’re using the data protection keychain. Second, the data protection keychain is available to directly distributed programs that use Developer ID signing. See the intersection of the Keychain Sharing row and the Developer ID column in the table in Developer Account Help > Reference > Supported capabilitie
Replies
Boosts
Views
Activity
2w
Reply to Xcode 26.4: IBOutlets/IBActions gutter circles missing — cannot connect storyboard to code (works in 26.3)
In the same way, @IBDesignable, @IBInspectable have disappeared some time ago. Is it only with objC code or Swift as well ? I do hope I'm wrong, but sometimes, looks like they are silently killing IB to force developers to SwiftUI. That would be very very negative evolution.
Replies
Boosts
Views
Activity
2w
Reply to Family Controls entitlement: no response for over 2 weeks
Same issue here, pending for over 2 weeks, so sad :((
Topic: App & System Services SubTopic: General Tags:
Replies
Boosts
Views
Activity
2w
iphone device initiates data path termination in 2.5 seconds while trying to connect our wifi device via wifiaware peer to peer app
model : iphone 17 ios version: 26.2 app used: https://developer.apple.com/documentation/wifiaware/building-peer-to-peer-apps Here is our observation when we tried to make wifi aware connection between iphone and our wifi device. note : we used iphone as subscriber ( view simulation) 1.pairing & bootstrapping was successfully done 2.Data path was successfully established between iphone and our device. after data path establishment ,within few seconds , DATA PATH TERMINATION was sent from iphone which leads to pairing verification with new NMI address. Same behaviour is noticed even when we try to establish connection between two iphone devices. Here we have few questions. Once we establish data path , Why iphone initiates data path termination instead using the same service for data path exchange. 2.Why do we go for PAIRING VERIFICATION everytime.
Replies
5
Boosts
0
Views
385
Activity
2w
Reply to iphone device initiates data path termination in 2.5 seconds while trying to connect our wifi device via wifiaware peer to peer app
Are you seeing this with the latest versions of iOS? So iOS 26.4.2 or the iOS 26.5 beta? We tried with different iOS versions & here is our observation. till iOS 26.3 -Pairing setup & DP establishment fails iOS 26.4 & above -Pairing setup works, DP esatablishment fails when iphone act as Subscriber. We need clarifications for below. 1.If the first service is intended only for Pairing setup, when do we need to go for DP establishment and then disconnection? 2.Once data path is established how is the negotiation on what type of service and on which port data needs to be exchanged. 3.Is a separate platform specific service (in our case linux) implementation required to exchange data once NDP is established with the 2nd service. Thanks, Sangeetha.G
Replies
Boosts
Views
Activity
2w
"Unable to Manage Sandbox Test Account - Popup Closes on 'Manage' Click"
Issue: Sandbox test account stuck in a loop when trying to access account management Environment: iOS version: [iOS 26.4.2] Device: iPhone 12 Steps to Reproduce: Created sandbox test credentials on Apple Developer site (App Store Connect → Users and Access → Sandbox → Testers) On iPhone, navigated to Settings → Developer → Sandbox Apple Account Clicked Sign In and entered sandbox test email and password Successfully verified using verification codes (both email and phone number) Clicked on the signed-in sandbox account A popup appears with Manage option Clicked Manage Expected Behavior:- Should open sandbox account management interface Actual Behavior:- Popup immediately closes and the same popup reappears. Clicking Manage again produces the same result - an endless loop preventing access to account management. Has anyone encountered this issue with sandbox test accounts? Is there a known workaround or fix for this behavior?
Replies
1
Boosts
0
Views
153
Activity
2w
Reply to StoreKit 2: Transaction.all and Transaction.currentEntitlements return empty for valid non-consumable purchases in production
We have updated the app to StoreKit 2 and submitted it to the App Store. It's already been approved, and everything is working perfectly with real users. Regarding the other app, the user who experienced problems reported that restarting their iPhone resolved the issue and restored all in-app purchases. It seems the problem is solved for us.
Topic: App & System Services SubTopic: StoreKit Tags:
Replies
Boosts
Views
Activity
2w
StoreKit 2: Transaction.all and Transaction.currentEntitlements return empty for valid non-consumable purchases in production
FB: https://feedbackassistant.apple.com/feedback/22556883 We're seeing a small number of production users where both Transaction.currentEntitlements and Transaction.all return zero transactions for a valid, active, non-refunded non-consumable IAP. This makes it impossible to restore the purchase via any StoreKit 2 API. Environment: Xcode 26.4 (Build 17E192) iOS 26.4.1 Direct call to SK2 Transactions.all & Flutter in_app_purchase package v3.2.3 (uses SK2 on iOS 15+) Non-consumable IAP (one-time purchase) What we observe: AppStore.sync() triggers but the purchase stream returns 0 transactions Transaction.all returns empty Transaction.currentEntitlements also returns empty User is confirmed on the correct Apple ID Issue reproduces on both iPhone and Mac for the same Apple ID Issue appears to have started recently for users who previously had no problems Debug log from affected production user: [2026-04-20T08:50:10.744115Z] init: iapAvailable=true [2026-04-20T08:50:10.744566Z] init: isPremium=false [
Replies
19
Boosts
0
Views
1.4k
Activity
2w
TestFlight External Build Stuck in "Waiting for Review" for Over 2 Weeks - iOS App
Hi everyone, I'm experiencing an unusually long wait time for my TestFlight external build review and wanted to see if others are facing similar issues in 2026. Current Status: Platform: iOS App Version: 1.2.90 (Build 24) Build Type: TestFlight External Testing Current Status: In Review - not Waiting for Review Time in Current Status: Over 2 weeks Submission Timeline: Current Submission: Wednesday at 9:49 AM (iOS 1.2.90 Build 24) Previous Submission: March 9, 2026 at 2:20 PM (iOS 1.2.90 Build 11) - Status: Completed (Rejected) Full History: March 9, 2026 2:20 PM - Initial submission (Build 11) March 15, 2026 5:25 AM - Rejection from Apple March 24 - April 15, 2026 - Multiple back-and-forth communications (5 messages total) April 15, 2026 2:22 PM - Last response from Apple Recent (Wednesday 9:49 AM) - Resubmitted new build (Build 24) Current - Still In Review after 2+ weeks What I've Tried: ✅ Addressed all rejection issues from the previous review ✅ Submitted a new
Replies
1
Boosts
0
Views
388
Activity
2w
Reply to Why I can't test the app on my own device even if I signed it with a valid development certificate
Thanks for the detailed explanation. I checked the Signing & Capabilities settings and enabled Automatically manage signing with my Apple Developer account selected. I’ll also inspect the Frameworks, Libraries, and Embedded Content section to make sure the third-party frameworks are set correctly. I’m going to paste the full console warnings/errors below so it’s easier to identify which framework is causing the issue. Domain: LaunchExecutableValidationErrorDomain Code: 1 Recovery Suggestion: Sign the executable with a valid certificate and provisioning profile. User Info: { DVTErrorCreationDateKey = 2026-05-13 02:48:15 +0000; IDERunOperationFailingWorker = IDEInstallCoreDeviceWorker; } -- Unable to Install “PaperHub” Domain: MIInstallerErrorDomain Code: 13 Recovery Suggestion: Failed to verify code signature of /var/installd/Library/Caches/com.apple.mobile.installd.staging/temp.FNhy2z/extracted/IGCSEPastPapers.app : 0xe800801c (No code signature found.) -- Failed to ins
Replies
Boosts
Views
Activity
2w
Reply to Apple Developer Support, please respond! I need your help
Today is Day 24. Still nothing. All work at my company has now stopped due to this bottleneck. Every day is filled with anxiety and worry over this specific issue. I can't believe Apple does this to their developers after charging them a developer fee. Apple Developer Support - please help. After 24 days, my request to remove the status code 7000 block has ended up in a black hole from which no updates or resolution seems to be provided. I formed an LLC to make & distribute mac apps, only to run right into a brick wall from which no resolution is being provided. This is dream-crushing.
Replies
Boosts
Views
Activity
2w
Apple Developer Support, please respond! I need your help
(Note: I don't need DTS support. This is not a DTS issue, and the standard responses aren't relevant to the situation. I would ask that DTS not respond in lieu of the developer support official) Yesterday, a poster in this forum wrote about his experience waiting several months to get approved to have his apps notarized. He had hit the status code 7000; Team ID not configured for notarization block. An Apple Developer Support account responded to him saying they would help the poster. After a month of waiting and praying for Developer Support to approve my Team ID for notarization, and no progress via the official channels, I am rolling the dice that asking Developer Support here will get my account approved or at least moved forward. I just can't wrap my head around why it takes so long to allow a Team ID to submit apps for notarization. My Team ID is V67NRZ84A2, and my support ticket is 102874600970. Spending months and months developing an app, paying the Developer Support annual fee, and then hav
Replies
1
Boosts
0
Views
84
Activity
2w