Search results for

Building for iOS Simulator, but the linked and embedded framework ‘XX.framework‘ was built for

186,331 results found

Post

Replies

Boosts

Views

Activity

Reply to 年間料金の支払いについて
Do you have access to the latest source code for your project? That's really the key question here. I agree with the poster above — when I've done development in the past, the app owner has their own Apple Developer account and invites the developer to join their team. The app should be submitted to App Review through the owner's account, not the developer's. A couple of other things to be aware of: if the annual Developer Program fee isn't paid and the account lapses, Apple will remove your app from the store. Once that happens, it's much harder to recover, so time is important here. Also, check any contracts you have with the development company. You may have rights to the source code, which could matter if the company's assets are being handled through bankruptcy proceedings. Without the source code, you'd essentially be starting over from scratch. The good news is that if you do manage to get the code and set up your own developer account, Apple has an app transfer process in App Store Connect that can mo
Topic: Community SubTopic: Apple Developers Tags:
6d
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
6d
Developer Control Question
Hi everyone, I’m new to the Apple Developer side of things and I want to make sure I’m handling this correctly. I hired a freelance iOS developer to build my app. I have my own Apple Developer account (Individual), and I want the app published under my account. The developer says he needs me to create a Certificate Signing Request (CSR), then he will generate the distribution certificate on his end and send me the .cer file back. From there, he would use that for signing and submitting the app. My questions: 1. Is this the correct and modern way to handle app signing? 2. Should I instead just add him to my App Store Connect account with Developer access and let him manage signing through Xcode? Dev claims this won’t work, which I haven’t been able to prove or disprove. ChatGPT says it does,but other AI tools says it doesn’t. 3. Is there any risk in sharing certificates like this? 4. What is considered best practice in 2026 for working with freelancers while keeping full control of the accoun
1
0
57
6d
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.
6d
Reply to Getting a basic URL Filter to work
@DTS Engineer It's mid February and I am trying to upload an app (just to TestFlight) with a url-content-filter. I am getting the same error: Your application bundle's signature contains code signing entitlements that are not supported on iOS. Specifically, value 'url-filter-provider' for key 'com.apple.developer.networking.networkextension' Is this just still not available? How do we proceed with using this entitlement?
6d
Reply to Getting a basic URL Filter to work
It's mid February and I am trying to upload an app (just to TestFlight) with a url-content-filter. I am getting the same error: Your application bundle's signature contains code signing entitlements that are not supported on iOS. Specifically, value 'url-filter-provider' for key 'com.apple.developer.networking.networkextension' Is this just still not available? How do we proceed with using this entitlement?
6d
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:
6d
Reply to Background execution window after CLBeaconRegion wake from terminated state
Hello, We are using iBeacon region monitoring with CLLocationManager (startMonitoring(for:)) to detect entry into a specific beacon region. Setup: Background Modes enabled: location bluetooth-central “Always” location permission granted. iBeacon UUID configured correctly. Beacon hardware verified (advertising confirmed). Expected Behavior: When the device enters the beacon region, the app should wake (or relaunch) in the background and trigger BLE communication. Observed Behavior: If the app is sent to the background normally → region enter event works correctly. However, if the user force-quits (swipe up kills) the app, then: The app does not relaunch when entering the beacon region. didEnterRegion is not triggered. BLE communication does not start. Questions: Is it officially supported for iBeacon region monitoring to relaunch an app after the user force-quits it? Is this behavior intentionally blocked by iOS as a user privacy/power decision? Are there any supported mechanisms to resume beacon moni
6d
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(
1
0
63
1w
App Intents migration path for SiriKit domain intents (INStartCallIntent, INSendMessageIntent)?
We're in the process of migrating our app's custom intents from the older SiriKit Custom Intents framework to App Intents. The migration has been straightforward for our app-specific actions, and we appreciate the improved discoverability and Apple Intelligence integration that App Intents provides. However, we also implement SiriKit domain intents for calling and messaging: INStartCallIntent / INStartCallIntentHandling INSendMessageIntent / INSendMessageIntentHandling These require us to maintain an Intents Extension to handle contact resolution and the actual call/message operations. Our questions: Is there a planned App Intents equivalent for these SiriKit domains (calling, messaging), or is the Intents Extension approach still the recommended path? If we want to support phrases like Call [contact] on [AppName] or Send a message to [contact] on [AppName] with Apple Intelligence integration, is there any way to achieve this with App Intents today? Are there any WWDC sessions or documentation we may
3
0
110
1w