When I open developer.apple.com I do not see my other teams on the top right dropdown. After logging in, it directly takes me to one of my teams which is Nautilus and It does not allow me to change to other teams.
Dive into the vast array of tools, services, and support available to developers.
Selecting any option will automatically load the page
Post
Replies
Boosts
Views
Activity
We are building a framework which will be used by other apps. Want to integrate crash reporting and diagnostics for our framework. Want to report crashes to our backend happening inside our framework only and ignore app level crashes. Is it possible to filter crashes like that ?
Hello!
When trying to use MLTensor, I am getting the error that it is not found in scope even though I am using Xcode 15.1 (it says fully up to date) and set my deployment target to iOS 17.2. Is there something else I need to be doing in order to use MLTensor?
Thanks!
Michael
Today after I apparently fat fingered/misclicked/misdragged something in Xcode, the short cut for "Reveal in Project Navigator" (cmd+shift+J) stopped working for me. I don't have any custom shortcut bindings and the other shortcuts still work, as far as I can tell.
I've deleted and re-installed Xcode; I've run defaults delete com.apple.dt.Xcode to no avail. I'd really like this shortcut back as it's probably my second or third most used one :(
Topic:
Developer Tools & Services
SubTopic:
Xcode
Hello Apple Developer Team,
I have been trying to request a correction to my tax invoice for my Apple Developer Program purchase, but I have been continuously redirected between Apple Developer Support and Apple Store Online, with no resolution to my issue.
Issue Details:
Tax Invoice No.: 0015056100
Problem: The company name is incorrect, and the Tax ID is missing.
Correction Requested:
Company Name: Bluebik Vulcan Company Limited (Head Office)
Tax ID: 0105565196514
Address: No.199 S-OASIS Building, 11th Floor, Unit no. 1103-1106, Vibhavadi Rangsit Road, Chomphon, Chatuchak, Bangkok, Thailand 10900
What Happened:
I initially contacted Apple Developer Support, but they informed me that they do not handle invoice modifications and asked me to contact Apple Store Online.
When I contacted Apple Store Online, they redirected me back to Developer Support.
This back-and-forth has been going on for days, and no one has taken responsibility for my request.
I need urgent assistance to resolve this issue. Could someone from Apple clarify which team is responsible for invoice modifications and escalate this matter?
I have a Case ID for my request and can provide additional details if needed.
Looking forward to a resolution as soon as possible.
Best regards,
Pornthep Jaroen-ngam | Non
Technical Consultant, Associate Director
Bluebik Vulcan Company Limited
Topic:
Developer Tools & Services
SubTopic:
Apple Developer Program
Tags:
Developer Tools
Developer Program
I am trying to test this simulated Error.
The issue is, I can't get this to trigger through the simulatedError function.
Error will always end up as an unknown error
Example code snippet:
@available(iOS 17.0, *)
func testPurchase_InvalidQuantity() async throws {
// Arrange
testSession.clearTransactions()
testSession.resetToDefaultState()
let productID = "consumable_1"
try await testSession.setSimulatedError(.purchase(.invalidQuantity), forAPI: .purchase)
guard let product = await fetchProduct(identifier: productID) else {
XCTFail("Failed to fetch test product")
return
}
let option = Product.PurchaseOption.quantity(4)
let result = await manager.purchase(product: product, options: option)
switch result {
case .success:
XCTFail("Expected failure due to invalid quantity")
case .failure(let error):
print("Received error: \(error.localizedDescription)")
switch error {
case .purchaseError(let purchaseError):
XCTAssertEqual(purchaseError.code, StoreKitPurchaseError.invalidQuantity.code)
default:
XCTFail("Unexpected error: \(error)")
}
}
}
In the above code snippet, I have an Unexpected Error.
But if i remove try await testSession.setSimulatedError(.purchase(.invalidQuantity), forAPI: .purchase) I will receive a XCTFail in the success of my result.
So when I set the quantity to a -1, only then can I correctly receive an invalidQuantity.
Does anyone know why the try await testSession.setSimulatedError(.purchase(.invalidQuantity), forAPI: .purchase) would fail to work as directed? I have tests for all the generic errors for loadProducts API and the simulatedError works great for them
I created a developer account in one country and it was active for few years, now it has expired and I have moved to another country. When I want to change the address under "Membership details > Update your information +" it redirects me to a page and I see the following message
Your account can’t access this page.
There may be certain requirements to view this content.
If you’re a member of a developer program, make sure your Account Holder has agreed the latest license agreement.
So I thought may be I should just go and renew the account, but on the payment page there's no option to change country there as well, which is required as I don't have a card from my previous country.
It is an individual account.
Is there any hope I can resurrect my account?
Why is it necessary that I have to reload all my personal apps developed by me for my use every year when I renew my Developer License? If I quit the program, anyone that bought my apps (if I had any) on the App Store would not lose the use of those apps. It should be the same for the apps I put on my devices when I am enrolled.
Topic:
Developer Tools & Services
SubTopic:
Apple Developer Program
xCode 16.2 deletes the dev account ...
Steps:
Open the xCode 16.2 (16C5032a)
Open xCode -> Settings -> Accounts
Make sure there are no accounts added
Add some dev account using an AppleID
Make sure the added account is presented in the accounts list
Exit xCode and re-launch it
Open xCode -> Settings -> Accounts
Check the list of dev accounts ...
Actual results:
The list of accounts is empty, and the "No accounts" text is presented.
Expected result:
The previously added account is in service
Topic:
Developer Tools & Services
SubTopic:
Xcode
when opening Main.storyboard, all screens turn black, XCode freezes, and then closes. I am adding the font according to this guide. I'm trying to add Inter-VariableFont_opsz,wght.ttf of the https://fonts.google.com/specimen/Inter
I applied for the Apple Developer Program on February 4, 2025, and uploaded the required documents on February 5, 2025. However, as of today (February 26, 2025), I have not received any update or response regarding my application.
I have already sent two emails regarding this matter but have not received a reply. I would appreciate an update on my application status and any further actions required on my end to complete the process.
How to reach apple support?
Topic:
Developer Tools & Services
SubTopic:
Apple Developer Program
Tags:
Developer Tools
Developer Program
I have a xcode project generated by unity 6
my mac:
my x-code:
It's a simple project but the building time lasted over 10 minutes and I found a page
https://discussions.unity.com/t/optimizing-ios-and-macos-build-times-using-ccache/809570
I tried to run ccache in my mac and hope to accelerate the building.
I installed ccache in my MAC by brew
I made two script with +x mode
I created a testc folder to verify the script
and it did work.
Then I opened the xcode and added CC and CXX to the “Build Settings”
I triggered the building
But it didn’t work, the building used the default compiler.
I had repeated to ask AI about it and cleaned building cache many times, but the problem still exists.
Even without any probing executing of the ccache-clang script ( I configured the log file position, so if it has been executed once, there will be some logs)
Could someone help me check if there’s something wrong?
Topic:
Developer Tools & Services
SubTopic:
Xcode
I am signed into Xcode for automatic signing. Which works for a random amount of builds and then the Account/AppleID dissappears from Xcode. This is a vital part of our CI/CD processes and disrupts the workflow alot.
MacOS version:
Apple M2
15.3 (24D60) Sequoia
related:
https://developer.apple.com/forums/thread/724434
https://stackoverflow.com/questions/50252887/account-automatically-removed-from-xcode
I feel a bit dumb now.
I once succeeded to change the language of an app on Watch simulator. So it is possible.
And I'm not able to repeat (fool of me I did not took note of how I did it).
I just remember it was simply through some language settings selection, may be rebooting the Mac, but not by changing anything in code.
Does someone know how to do ?
I get a crash in Apple Watch simulator (Series 9 45mm 18.0) as soon as the app launch if I type anything on external keyboard (just hitting command key for instance to capture a screenshot). Same crash on series 7 (45mm, OS 18.1)
But app works normally when I use mouse to interact with the app on simulator.
App does not crash on real device (Watch 4 OS 10.4.1).
Nor does it crash on Series 6 simulator (44 mm OS 17.4).
Here are the log I could collect (apparently, they contain sensitive language !!! so I attach as a file.:
Attached logs
Reposting (after a while) from the Swift forums - the build timeline for our project has a lot of weird gaps in the beginning - almost 15 seconds in total, which is quite a big chunk of the total build time. Is there any way to determine why they exist or how I could fix them? I hope it's just something hidden and not the build system literally doing nothing...
This is on Xcode 15.4.
Topic:
Developer Tools & Services
SubTopic:
Xcode
Hi,
From App analytics, we found that our app crashed from time to time on users' devices despite that we have tested it thoroughly on our devices. We are doubt that it's the reason why we can't retain them. But how can we get the crash reports for the app installed on user devices? We have no users' emails and can't ask them directly.
I have command line tools installed:
% pkgutil --pkg-info=com.apple.pkg.CLTools_Executables
package-id: com.apple.pkg.CLTools_Executables
version: 16.2.0.0.1.1733547573
volume: /
location: /
install-time: 1739567437
Thus clang is installed here:
% whereis g++
g++: /usr/bin/g++
I also have installed gcc from homebrew:
% /opt/homebrew/bin/g++-14 --version
g++-14 (Homebrew GCC 14.2.0_1) 14.2.0
Copyright (C) 2024 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
However, I still cannot compile any c++ code, even the simplest one:
#include <iostream>
using namespace std;
int main() {
cout << "Hello World!" << endl;
return 0;
}
It returned this error:
% /opt/homebrew/bin/g++-14 ~/Downloads/try.cpp
ld: unsupported tapi file type '!tapi-tbd' in YAML file '/Library/Developer/CommandLineTools/SDKs/MacOSX15.sdk/usr/lib/libSystem.tbd' for architecture arm64
collect2: error: ld returned 1 exit status
It seems to be command line tools related. But I've already installed the most recent version of CLT and gcc.
Additionally, clang can compile the same code:
% /usr/bin/g++ ~/Downloads/try.cpp
% ./a.out
Hello World!
What else shall I do to make this g++ compiler work?
I have updated my iPhone 15 pro max to 18.4 yesterday. Some apps are not connecting to internet and some apps are not loading.
i have tried to turn off find my option so I could restore the phone to 18.3 but It stays on.
Any solution to restore my phone back to 18.3 or an update fix?
Topic:
Developer Tools & Services
SubTopic:
Apple Developer Program
We applied for the Apple Developer Program more than two weeks ago, and our application is completely stuck with no updates or clear next steps. Despite providing all required documents (Company registration, D-U-N-S number, ID verification, etc. and several times !), we are still waiting for approval, while there is nothing complicated (EU citizens, UK company)
We've reached out multiple times to Apple Support but have received no concrete answers or timeline for when our application will be reviewed. Meanwhile, we have successfully completed similar processes with Google, Meta, and financial institutions like banks or PSP, all within 48h !
How can a company like Apple treat its partners this way? The lack of transparency in the approval process is frustrating and severely impacts our timeline. This kind of experience does not inspire trust or confidence in doing business with Apple...
🔹 Has anyone else experienced such long delays in the enrollment process?
🔹 Is there any way to escalate this to get an actual response?
Apple, please address this issue and provide a clear resolution.
Thank you.
Topic:
Developer Tools & Services
SubTopic:
Apple Developer Program