Search results for

Apple Maps Guides

154,023 results found

Post

Replies

Boosts

Views

Activity

Reply to Stuck in "Waiting for Review" for 11 Days - Missed Critical Launch Date
I've been in Waiting for Review since Jan 27 with no movement. We missed our launch date as well. Originally, we submitted on Jan 23, mistakenly assumed there was an issue because our app didn't move, and resubmitted on Jan 27. In hindsight, it likely lost 4 additional days. After submitting 3 requests to Apple Support, just to confirm our app was queued, they got back to us saying it was and that no additional action was required on our side. We're burning a ton of cash daily on back-end services that are running so Apple's reviewers can test all features, and our devs are sidelined until we get word on Apple's decision (first-time app submission). We anticipated the real challenges would begin once our app launched, and never thought they would start with Apple's review process. For what it's worth, it's the lack of communication and clarity from Apple that's been frustrating. Honestly, if they simply said we're backlogged and actively working to clear the queue,
1w
Reply to Developer Control Question
Hi there, You're on the right track in wanting to retain full control of your Apple Developer account while working with a freelancer. The best and most modern approach is to add the developer to your App Store Connect account with the Developer role. This allows them to access the necessary signing tools in Xcode without needing your personal credentials, and they can submit the app directly through App Store Connect. Sharing certificates and private keys (as your developer suggests) can be risky and is no longer considered best practice. Instead, you should handle signing through Xcode and App Store Connect, which ensures both security and control. This way, your app remains under your Apple Developer account, and you retain long-term control while allowing the developer to work without compromising security. Hope that helps! -Dean Reyburn, reyburnengineering.com iOS/MacOS app developer
1w
Reply to Unusually long “Waiting for Review” times this week (App Store + TestFlight delays?)
My team has also encountered a similar situation. In mid-January, the build (App ID: 1552207792) was submitted for review and remained in the Waiting for Review state for several days. The status did not change, so we tried resubmitting the build, but that did not help. A week later, we resubmitted it again after accepting the new Terms of Use in App Store Connect, thinking that might have been the cause of the delay. Currently, the app has been stuck in Waiting for Review since February 4th — it has now been 10 days. A request for an expedited review and contacting Apple have not had any impact on the situation.
1w
Reply to Xcode 26.3 Codex Account just spinning
I had the same problem; what I did was log out (and yeah, trying to log out properly with Codex is a big pain—you need to remove the config files). Then follow the instructions, and after I logged in the spinner ran on the GUI. I fired up Codex in Terminal, waited a moment, and closed the spinner UI. It told me it failed, then quit Xcode and Codex, and it should then let you continue as if nothing went wrong. to install the CLi version: https://developers.openai.com/codex/cli Of course, yesterday after I installed macOS 13.3, Xcode froze on startup, telling me it was trying to recover a document that was not saved correctly. I wiped Xcode and ~/Library/Developer, rebooted, and installed Xcode 26.3 RC; the problem was still there (?). Installing Xcode 26.2 made the problem go away. The issue must be with Codex. Uninstalling Codex does not help either—it keeps hanging on startup—so I wiped Codex config files in ~/Library. Xcode still hung, but I could click on the menu and get a response; tapping on the “triang
1w
Reply to MusicKit entitlement consistently missing from generated Ad Hoc Profile despite App Services configuration
If you've enabled MusicKit in the Apple Developer Portal but your build fails with Provisioning profile doesn't include the entitlement, here is the fix: Do NOT add the entitlement to app.json. Apple now treats MusicKit as a Runtime Service, meaning it is checked on Apple's servers when the app runs, not stamped into the .mobileprovision file at build time.
Topic: Code Signing SubTopic: Entitlements Tags:
1w
Issue with Xcode 26
How to resolve this error ? Unsupported Swift Architecture while trying to run my code. I am.using Apple laptop with M1 chip with 10 core, Mac os 26.1, xcode 26.1, simulator 26.1. THIS IS VERY URGENT FOR MY PROJECT DELIVERY. ANY PROMPT HELP IS MUCH APPRECIATED. possible to connect some expert via conference call ?
2
0
32
1w
Reply to Apple Developer Program payment completed but membership not activated
Update: I received a response from Apple Developer Support. They suggested re-submitting the enrollment using the Apple Developer app to resolve the payment issue, since alternative payment options are only available through the app. However, this would likely result in a second charge to my credit card, and the app does not even show an option for me to re-enroll or restart the process. I don’t believe it is an optimal solution to require another payment to fix this issue. They asked me to confirm whether I want to proceed with re-enrollment via the app. I will share another update once I have more information.
1w
process.waitUntilExit never exits in tahoe 26.3
I have this code in my Virutalization application let process = Process() process.executableURL = URL(fileURLWithPath: /usr/sbin/diskutil) process.arguments = [image, create, blank, --fs, none, --format, ASIF, --size, 2GiB, url.path ] try process.run() process.waitUntilExit() if process.terminationStatus == 0 { print(✅ Disk image creation succeeded.) } else { print(❌ Disk image creation failed with exit code (process.terminationStatus)) } } catch { print(Process failed to launch: (error.localizedDescription)) return } this code was working fine until Tahoe 26.2. with the update of 26.3 the system freezes at process.waitUntilExit() The code never exits and i get beech balls. This is working fine with intel macs. i am getting the problem in apple silicon m4 mac mini. Any help would be appreciated.
6
0
106
1w
In-App-Purchase review rejected
Testing with testflight the IAP work with sandbox. But Apple Review was rejected. It was explained that the IAP could not be found. I cancelled the review, added the IAP to all countries again. The IAPs are in status waiting for review. Now when preparing the version, I cannot choose anymore the IAP. I don't find the option anymore to add the IAP products on the version page. Contracts are all active and in the app for me and others it is working.
1
0
80
1w
Notifications scheduled but never delivered at scheduled time
Device: iPhone (real device) iOS: 17.x Permission: Granted Notifications are scheduled using UNCalendarNotificationTrigger. The function runs and prints SCHEDULING STARTED. However, notifications never appear at 8:00 AM, even the next day. Here is my DailyNotifications file code: import Foundation import UserNotifications enum DailyNotifications { // CHANGE THESE TWO FOR TESTING / PRODUCTION // For testing set to a few minutes ahead static let hour: Int = 8 static let minute: Int = 0 // For production use: // static let hour: Int = 9 // static let minute: Int = 0 static let daysToSchedule: Int = 30 private static let idPrefix = daily-thought- private static let categoryId = DAILY_THOUGHT // MARK: - Permission static func requestPermission(completion: @escaping (Bool) -> Void) { let center = UNUserNotificationCenter.current() center.requestAuthorization(options: [.alert, .sound]) { granted, _ in DispatchQueue.main.async { completion(granted) } } } // MARK: - Schedule static func scheduleNext30Days(isPro: Bo
1
0
66
1w
Reply to App Intents migration path for SiriKit domain intents (INStartCallIntent, INSendMessageIntent)?
Thanks Ed for the reply! I guess the reason for the question is that it seems a little strange to have some intents as AppIntents and others in the (older) SiriKit / IntentExtension framework, as opposed to having them all as AppIntents. Ideally I'd like to get rid of the IntentsExtension if possible, but it sounds like that's something that's intentional from Apple's perspective. Is that true, or are there plans to bring them all over as AppIntents at some point in the future?
1w
Reply to Feedback Assistant: „This Feedback will no longer be monitored, and incoming messages will not be reviewed.“
This message is even more frustrating when they misunderstand, such as in FB21354014. I first wrote that taking the sysdiagnose always resulted in an error, later wrote that it worked, and they thought the feedback was solved and sent that message that prevents the feedback from going forward. I'm certainly not going to waste my time creating a new feedback and uploading all the data again. I thought it's in Apple's interest to keep communication open so we can help them solve their issues, but it seems they like to make it more difficult than necessary.
1w