Hello,
I’m looking for guidance from an Apple Developer moderator or admin.
I enrolled in the Apple Developer Program using my personal Apple ID and completed the enrollment process, including payment of the £79 membership fee (UK). The payment was successful.
However, my membership status has remained “Pending” Since 6th Jan when it said it can take up to 48hrs, I’m still unable to access App Store Connect.
I’ve already submitted a request through the Developer Program → Enrollment → Account & Membership contact form, but I haven’t yet received a response.
Could someone please advise if this has happened to them / how long it can take?
Thank you very much for your time and assistance.
Overview
Selecting any option will automatically load the page
Post
Replies
Boosts
Views
Activity
I’m getting Auto Layout constraint conflict warnings related to AVPlayerView in my project.
I’ve reproduced the issue on macOS Tahoe 26.2.
The conflict appears to originate inside AVPlayerView itself, between its internal subviews, rather than in my own layout code.
This issue can be easily reproduced in an empty project by simply adding an AVPlayerView as a subview using the code below.
class ViewController: NSViewController {
override func viewDidLoad() {
super.viewDidLoad()
let playerView = AVPlayerView()
view.addSubview(playerView)
}
}
After presenting that view controller, the following Auto Layout constraint conflict warnings appear in the console:
Conflicting constraints detected: <decode: bad range for [%@] got [offs:346 len:1057 within:0]>.
Will attempt to recover by breaking <decode: bad range for [%@] got [offs:1403 len:81 within:0]>.
Unable to simultaneously satisfy constraints:
(
"<NSLayoutConstraint:0xb33c29950 H:|-(0)-[AVDesktopPlayerViewContentView:0x10164dce0](LTR) (active, names: '|':AVPlayerView:0xb32ecc000 )>",
"<NSLayoutConstraint:0xb33c299a0 AVDesktopPlayerViewContentView:0x10164dce0.right == AVPlayerView:0xb32ecc000.right (active)>",
"<NSAutoresizingMaskLayoutConstraint:0xb33c62850 h=--& v=--& AVPlayerView:0xb32ecc000.width == 0 (active)>",
"<NSLayoutConstraint:0xb33d46df0 H:|-(0)-[AVEventPassthroughView:0xb33cfb480] (active, names: '|':AVDesktopPlayerViewContentView:0x10164dce0 )>",
"<NSLayoutConstraint:0xb33d46e40 AVEventPassthroughView:0xb33cfb480.trailing == AVDesktopPlayerViewContentView:0x10164dce0.trailing (active)>",
"<NSLayoutConstraint:0xb33ef8320 NSGlassView:0xb33ed8c00.trailing == AVEventPassthroughView:0xb33cfb480.trailing - 6 (active)>",
"<NSLayoutConstraint:0xb33ef8460 NSGlassView:0xb33ed8c00.width == 180 (active)>",
"<NSLayoutConstraint:0xb33ef84b0 NSGlassView:0xb33ed8c00.leading >= AVEventPassthroughView:0xb33cfb480.leading + 6 (active)>"
)
Will attempt to recover by breaking constraint
<NSLayoutConstraint:0xb33ef8460 NSGlassView:0xb33ed8c00.width == 180 (active)>
Set the NSUserDefault NSConstraintBasedLayoutVisualizeMutuallyExclusiveConstraints to YES to have -[NSWindow visualizeConstraints:] automatically called when this happens. And/or, set a symbolic breakpoint on LAYOUT_CONSTRAINTS_NOT_SATISFIABLE to catch this in the debugger.
Is it system bug or maybe someone knows how to fix that?
Thank you.
I just tried to renew my APP, and it confirmed via email that it is renewed. But, also says that it needs to be reviewed. Seems like alot of people are having this issue. I have a pilot study on Monday which requires users to use the app, so I placed an expedited review request, and the system is saying I don't have an APP in the review stage. App is no longer on the App Store. Please advise!
Hello, i had in 2023 active apple developer license and i created alpha version of my app, when test was concluded i didnt renew my subscription because i started to create my company.
Fast forwarding 2 years i have company now and company has now apple developer license, i wanted to create app identifier and i found out that its taken and then i realized i left that app id on my personal account. So because of that i cannot create app id on company account. I contacted apple developer support on tuesday and didnt get any answer back. I Thought i did wrong topic, so i made another on wednesday and still nothing, replied to the 2nd case and nothing.
I was simply asking to either transfer the app id to company account or remove it, so i can create it again on company account.
Can someone tell me what i can do next to resolve it?
I dont want to pay $100 just to remove app identifier. Application on my personal profile was never in AppStore, it only reached TestFlight.
Case IDs: 102795542798 , 102795563781
I. am working on an app that uses automounted files using nfsv4 where the server has zfs filesystems. As a test I've created a very simple example and the directory in question seems to automount correctly, but when I try to access it, I get strange behavior. The directory is mounted on is /System/Volumes/Data/mnt/subdir and I can change to that directory just fine. However I get the following:
63 rrsum@Anywhere:subdata% pwd
/System/Volumes/Data/mnt/subdata
64 rrsum@Anywhere:subdata% ls -la
total 3
drwxr-xr-x 3 nobody nobody 4 Jan 10 13:03 .
dr-xr-xr-x 3 root wheel 2 Jan 8 17:27 ..
drwxr-xr-x 2 nobody nobody 3 Jan 9 11:20 dir
-rw-r--r-- 1 nobody nobody 12 Jan 10 13:09 file.txt
65 rrsum@Anywhere:subdata% cd dir
cd: string not in pwd: ls
The directory appears in the 'ls -la' properly, but I cannot cd to it.
Topic:
Accessibility & Inclusion
SubTopic:
General
I have a question concerning Xcode version 26.
Ever since I installed this version on my Mac, I have been experiencing issues with the StoreKit configuration file. The Simulated StoreKit Failures check boxes and selections are all grayed out.
Once in a while, I see a pop-up stating "The document 'TaConfig.storekit' could not be autosaved. The file has been changed by another application. The pop-up Save as... points to where my config file is located, but the config file is grayed out. I thought maybe the directory where the file is located is write protected, but I have been able to save other files to the same directory.
The Edit Scheme... -> Run -> Options has the StoreKit Configuration set for my file TaConfig.storekit.
It feels like there is an option somewhere that I'm missing.
Topic:
Developer Tools & Services
SubTopic:
Xcode
I'm experiencing a contradictory validation issue with DeviceActivityReportExtension that creates an impossible situation:
The Problem:
Without NSExtensionPrincipalClass in Info.plist → App Store Connect rejects upload with: "Missing Info.plist values. No values for NSExtensionMainStoryboard or NSExtensionPrincipalClass found"
With NSExtensionPrincipalClass → Local install fails with: "defines either an NSExtensionMainStoryboard or NSExtensionPrincipalClass key, which is not allowed for the extension point com.apple.deviceactivityui.report-extension"
Setup:
Extension point: com.apple.deviceactivityui.report-extension
Using SwiftUI with @main attribute and DeviceActivityReportExtension protocol
Xcode 16.2, iOS 17.6 deployment target
Code structure:
@main
struct SpoolReport: DeviceActivityReportExtension {
var body: some DeviceActivityReportScene {
// Report scenes here
}
}
The extension builds and runs perfectly without NSExtensionPrincipalClass, but cannot be uploaded to App Store Connect. Adding the key allows upload but breaks local installation.
Is this a known issue? Is there a workaround or correct Info.plist configuration for DeviceActivityReportExtension?
Thank you!
I set up a sandbox account to test in-app purchases in my development app. I went to settings > dev > sandbox accounts and updated my login in the app store. But I received a 'block'; I can no longer download new versions or anything from the store. I've already removed the sandbox account, and even using my real Apple ID, I can't use the functions.
Topic:
Developer Tools & Services
SubTopic:
Developer Forums
When I have a TextField or TextEditor, tapping into it produces these two console entries about 18 times each:
CHHapticPattern.mm:487 +[CHHapticPattern patternForKey:error:]: Failed to read pattern library data: Error Domain=NSCocoaErrorDomain Code=260 "The file “hapticpatternlibrary.plist” couldn’t be opened because there is no such file." UserInfo={NSFilePath=/Library/Audio/Tunings/Generic/Haptics/Library/hapticpatternlibrary.plist, NSURL=file:///Library/Audio/Tunings/Generic/Haptics/Library/hapticpatternlibrary.plist, NSUnderlyingError=0x600000ca1b30 {Error Domain=NSPOSIXErrorDomain Code=2 "No such file or directory"}}
<_UIKBFeedbackGenerator: 0x600003505290>: Error creating CHHapticPattern: Error Domain=NSCocoaErrorDomain Code=260 "The file “hapticpatternlibrary.plist” couldn’t be opened because there is no such file." UserInfo={NSFilePath=/Library/Audio/Tunings/Generic/Haptics/Library/hapticpatternlibrary.plist, NSURL=file:///Library/Audio/Tunings/Generic/Haptics/Library/hapticpatternlibrary.plist, NSUnderlyingError=0x600000ca1b30 {Error Domain=NSPOSIXErrorDomain Code=2 "No such file or directory"}}
My app does not use haptics.
This doesn't appear to cause any issues, although entering text can feel a bit sluggish (even on device), but I am unable to determine relatedness. None-the-less, it definitely is a lot of log noise.
Code to reproduce in simulator (xcode 26.2; ios 26 or 18, with iPhone 16 Pro or iPhone 17 Pro):
import SwiftUI
struct ContentView: View {
@State private var textEntered: String = ""
@State private var textEntered2: String = ""
@State private var textEntered3: String = ""
var body: some View {
VStack {
Spacer()
TextField("Tap Here", text: $textEntered)
TextField("Tap Here Too", text: $textEntered2)
TextEditor(text: $textEntered3)
.overlay(RoundedRectangle(cornerRadius: 8).strokeBorder(.primary, lineWidth: 1))
.frame(height: 100)
Spacer()
}
}
}
#Preview {
ContentView()
}
Tapping back and forth in these fields generates the errors each time.
Thanks,
Steve
As title says. Surely rendering bitmaps is something the hardware could handle, right? Please enable MKTileOverlay for watchOS.
Hi, I'm experiencing an issue with my app. I use Firebase as my server, and it is great. Still, there is one issue: when I send push notifications from my app to users, the users will get the notification if the app is open, but not when it is closed. I have tried many solutions to fix it, even asking AI, but the issue is still there. I would be happy to give you access to Firebase and the Xcode workspace, as I have no clue how to fix it.
Hi everyone — looking for guidance from developers who’ve dealt with App Review + subscriptions.
We’ve submitted our iOS app for review and have been rejected 3 times related to subscriptions / in-app purchase rules.
Here’s our setup:
We offer a Premium subscription that unlocks extra features in the app.
We do NOT allow users to purchase/subscribe inside the iOS app. There is no IAP, no checkout, and no purchase flow in the app.
Users can only subscribe outside the app (on our website).
If a user already has a Premium account (subscribed on the website), they can log in on iOS and use all Premium features inside the app.
To us, this appears similar to what apps like Spotify do: from the iOS app you can’t subscribe to Premium via IAP; they direct users to the website, and once subscribed externally, Premium works inside the app. We’ve shared this context with the review team, but we still haven’t gotten a clear explanation of what specifically is not allowed in our case.
My questions to the community:
Is this model acceptable under App Store guidelines (no in-app purchase, subscription only on the web, and premium features unlocked after login)?
If it is acceptable, what is the recommended way to present this to App Review so the app gets approved? (e.g., specific wording, metadata notes, review notes, removing certain UI, etc.)
If it’s not acceptable, what’s the correct approach Apple expects for a Premium subscription that unlocks digital features?
Has anyone had a similar rejection and successfully resolved it — what changes or steps worked?
Any advice on how to get this approved would be hugely appreciated.
See below the example from Spotify app on IOS.
Since I moved to Xcode 26.1 and Xcode 26.2 then, my UI tests all fail only for iOS 26+, for both simulator and real device.
Everything worked perfectly with Xcode 26.0, and the code base of the application under test and the test cases are the same. With Xcode 26.0, the tests pass for iOS 26+ and iOS < 26, for both simulator and real device.
In addition, even the Accessibility Inspector tool fails to display the view hierarchy for iOS 26+ with Xcode 26.2. With Xcode 26.0, whatever are the devices and the OS versions, the tool was able to display the view hierarchy. Otherwise the tool is empty even if the device and app are selected.
This failing tests issue occurs both on my local environment and on GitHub Actions runners, excluding the hypothesis I have troubles with my own side.
The error message for failing tests explains the element cannot be found anymore.
Given for example the test case:
@MainActor
func testMakeScreenshotsForDocumentation_Button() {
let app = launchApp()
goToComponentsSheet(app)
waitForButtonToAppear(withWording: "app_components_button_label", app)
tapButton(withWording: "app_components_button_label", app)
tapButton(withWording: "Strong", app)
takeScreenshot(named: "component_button_", ACDC.buttonX, ACDC.buttonY, ACDC.buttonWidth, ACDC.buttonHeight, app)
}
the goToComponentSheet(app) line shows the error:
ActionsDocumentationScreenshots.testMakeScreenshotsForDocumentation_Button()
In details the function:
/// Opens the page of the components, i.e. tap on the 2nd of the tab bar
@MainActor func goToComponentsSheet(_ app: XCUIApplication) {
app.tabBars.buttons.element(boundBy: 1).tap()
}
with the following error on the app.tabBars line:
.../AppTestCase.swift:157 testMakeScreenshotsForDocumentation_Button(): Failed to tap Button (Element at index 1): No matches found for Descendants matching type TabBar from input {(Application, pid: 1883)}
I have the feeling with Xcode 26.2 (and Xcode 26.1) the view hierarchy is not accessible anymore for both XCUITest framework and Accessibility Inspector tool.
Note I have on my side macOS Tahoe 26.1 (25B78) and my GitHub Actions runner are on macOS 26.0.1 (25A362). When I used Xcode 26.0 I was on macOS Tahoe 26.1 (25B78) .
Any ideas? 🙂
My iOS app uses CloudKit key-value storage. I have not updated the app in a few years but it works fine. Since it was last updated, I transferred the app from an old organization to my personal developer account. Now that I'm working on the app again I get an error: Provisioning profile "iOS Team Provisioning Profile: com.company.app" doesn't match the entitlements file's value for the com.apple.developer.ubiquity-kvstore-identifier entitlement.
In the entitlement file, it has $(TeamIdentifierPrefix)$(CFBundleIdentifier) as the value for iCloud Key-Value Store. I've verified the variables resolve as expected. When I parse the provisioning profile there is no entitlement value for key-value storage. What am I getting wrong?
I am trying to resubmit my app after failing a few times (first time doing this). Anyhow, when resubmitting the last 2 times, the "In-App Purchases and Subscriptions" section was always present on the version page so I could choose my IAP's and Subscriptions before submitting for review. Currently, I am trying to resubmit again, and the "In-App Purchases and Subscriptions" section is nowhere to be found and no matter what I try to do, it's just not showing up.
Currently, all my IAP's and Subscriptions have a "Waiting for Review" status and my app status is "1.0 Prepare for Submission".
Any ideas how I can get around this???
Topic:
App Store Distribution & Marketing
SubTopic:
App Review
Tags:
Subscriptions
App Review
In-App Purchase
This is unique situation, save your rhetoric calling me crazy unless you’re willing to look at the evidence I’ve collected over the last 2 years.
My entire family is being stalked and harassed by a DOD Contractor named Galapagos Federal Systems. They are literally using our identities to and accounts they’ve created to run Amazon Marketplace Business Accounts as sellers. They have amended my tax returns and they have hijacked my domain, which is MauiEasyRiders.Com. It’s pretty easy to see that they’ve hikacked my domain as they are using more than 20 ports around the clock, and I had to walk away from my business of 15 years because of a DDoS attack that is literally impossible to escape. These people are the lowest of the low. They have 250 million dollars in DODcontracts and they are registered as a small section 8a Native Hawaiian owned business, regardless of the fact that the owner is not Hawaiian and not from Hawaii, and the business was formed in Delaware. Their headquarters is literally a house in a neighborhood with nothing but a big ass can in the driveway, no traffic, no offices, just spook government hacks. I’ve mailed a complaint to the DOD hotline, been to the FBI in person, filled out all the forms online for every possible agency, filed police reports, nobody will even glance at the data I’ve accumulated and meticulously detailed, both in pdf format and on paper. They’re using my mothers identity and the identities of my two adult sons. It’s ridiculous. I literally have 90 Ip addresses in my DNS Leak Test and my home WiFi is hosting 190 IP Addresses. They have a Cisco business account in my name with over two hundred ASA and Fire IO devices that are years out of date. I have their exploit data, names, email addresses, absolutely everything I could possibly need that anyone investigating fraud would ask for, yet these parasites continue to carry out their crimes as if the law doesn’t apply to them. The only thing I have not tried is going to my Representatives from Washington in person. Anyone have any ideas? I’m happy to share data if anyone is interested in seeing it, even if you’re not interested in helping I’m happy to share all the info I can on their fraud.
Thanks in advance!
Topic:
Privacy & Security
SubTopic:
General
After I add all my billing details and card numbers and click proceed, it shows a page with Thankyou note but after i logout and re- login it shows me to complete my purchase and takes me to the same cycle of re-entering all details
And also to it, even after 48hrs also there have been no followups or anything not knowing if apple ever received my requests
Topic:
App & System Services
SubTopic:
General
Hi everyone,
I subscribed to the Apple Developer Program on Tuesday evening, November 4th, 2025. The payment has already been charged to my bank account, but my account still shows the status “Pending” with the message “Subscribe your membership”.
It’s now been several days, and I haven’t received any confirmation email or any request for additional information.
I already contacted Apple Support by email, but I’d like to know if other developers have experienced the same situation and how long it took before their account was activated.
Thanks in advance for your help and feedback!
— Martin
We have submitted a feedback for this issue: FB21230723
We're building a note-taking app for iOS and macOS that uses both UITextView and NSTextView.
When performing text input that involves a marked range (such as Japanese input) in a UITextView or NSTextView with a UITextViewDelegate or NSTextViewDelegate set, the text view's marked range (markedTextRange / markedRange()) has not yet been updated at the moment when shouldChangeTextIn is invoked.
UITextViewDelegate.textView(_:shouldChangeTextIn:replacementText:)
NSTextViewDelegate.textView(_:shouldChangeTextIn:replacementString:)
The current behavior is this when entering text in Japanese: (same for NSTextView)
func textView(_ textView: UITextView, shouldChangeTextIn range: NSRange, replacementText text: String) -> Bool {
print(textView.markedTextRange != nil) // prints out false
DispatchQueue.main.async {
print(textView.markedTextRange != nil) // prints out true
}
}
However, we need the value of markedTextRange right away in order to determine whether to return true or false from this method.
Is there any workaround for this issue?
I never come to post or something like this on board.
if I have something I will use on call and sent on suggestion
i‘ve suggestion on
call to Apple care in thailand and I have Apple care+ but not support same us and another pls call I need some of sugesstion for correct and I’m lost on I prepare on cloud back up for 20 year to use on Apple to Apple ,Microsoft to Microsoft ,Android to Android I don’t need to tran and I interment if I do i accepted in that if regarding my bio is incorretc it’s only because I lost in court case in thailand and in India I‘ve fraind and good relation from “Defendent“ on my case and I thing I’m not supid because on that time my company is only registeration in Thailand than i can’t to other under India law because it’s just registered that
I‘ve project regarding “ Make IOS and Mac OS watch os “ in rental and use MDM on correct and I think is only use on ownership is correcty on the asset as we investment on that and it’s basic to use on LAW in corrected inclouded reverneu department and is help for reducing cost on ISO 27001 “ but it’s same on that need to help
Thank you
Kirati Srichawla
share holder of 95 MFF on Both
pls came on the correct I find is not correct regarding my password it’s happen and I suggestion on behalf of end user and it‘s effected to me on march 2025 and I found on Apr 2025 and make request on “ suggestion “ to check and “Apple care+ “ as around few days to you know
Topic:
App & System Services
SubTopic:
iCloud & Data