Apple Developer Program

RSS for tag

Create and deliver software for users around the world on Apple platforms using the the tools, resources, and support included with Apple Developer Program membership.

Apple Developer Program Documentation

Posts under Apple Developer Program subtopic

Post

Replies

Boosts

Views

Activity

Screen Time Crash Bug & Downtime Features Taken Away
I have recently noticed that ever since I downloaded iOS 18 Public Beta 1, I have been unable to get to the screen time settings, after clicking the tab, the app just freezes. Although after a while I did get to the Screen Time tab, but all of the previous changes to my screen time were voided. App limits, Downtime, you name it, all gone. While my app limits do not work, I noticed that downtime still functioned, but when my parent changed the downtime settings on their phone (running iOS 17 no betas), it did nothing on my end. I am currently submitting feedback to apple and am trying to find workarounds. On an unrelated note to this issue, I noticed that “One More Minute” and “Request More Time” aren‘t there anymore, does anybody have any ideas or workarounds on any of these?
1
2
563
Jul ’24
Feedback Assistant, Apple Feedback wants me to install beta software
How to report a bug says "With Feedback Assistant available on iPhone, iPad, Mac, and the web, it’s easy to report issues you encounter". The Feedback Assistant User Guide says "Tell Apple about your experience with beta or seed releases". Is Feedback Assistant only intended for reporting bugs in beta software? A year ago I reported a bug in Xcode 14 and now I'm being asked to verify this issue with Xcode 16 Beta 3. I'm not a beta tester and I don't want to install beta software. How should I proceed?
2
0
618
Jul ’24
Account not accessible after notrizing status 7000
I have built a time tracking software that I tried notarizing multiple times. First there was some technical error, I did not know the process. When I setup the process according to guidelines, my app was rejected saying that my Team is not configured. When I saw the apple account the next day, I was not able to see the Identifier & Certificate section. I guess my access got limited. I tried from two different accounts and both of them got blocked. My application is made in Electron Js and Vue. The app size is 103 MB.
1
1
348
Aug ’24
Cannot see Beta Update option for Developer Beta (no matter the device platform)
Apple Developer Support stated that they don’t have any technical support for this and suggested posting in the Forums or Feedback Assistant app. Hoping someone here may have encountered this before and maybe has a fix. On any of my devices (macOS, visionos, watchOS, iPadOS, tvOS, and iOS) Beta Update will not show Developer Beta as an option for my Apple Account/ID. The only option would be Public Beta. As visionOS is only available for Developer Beta, this wouldn’t help with my workflow unfortunately. My question is whether anyone here has seen that Developer Beta did not show up under Beta Update and what they had to do to get that fixed.
2
0
446
Aug ’24
Enrolment is not happening
To fully review the enrolment, we will need to request additional details. For employment verification, we can accept a headed letter from HR, an employment contract, or payslip. For identity verification for you as the applicant, please provide your government issued ID. Additionally, we’ve been unable to verify an association between the organization name and website URL provided in your enrollment. A valid organization website is required to enroll in the program. uploaded all the documents but till now enrolment is not happening, any idea.
1
0
1.2k
Aug ’24
Enrollment Process Delayed Despite Submitting All Required Documents
Hello, I am reaching out regarding an issue I’m facing with the enrollment process. I have carefully followed all the instructions provided and have submitted the necessary documents for review. This includes: A headed letter from HR for employment verification. My government-issued ID for identity verification. Official translations of all required documents into English, complete with verification and seals. Additionally, I have provided all relevant information about my organization, including the website URL. However, I was recently informed that there has been an issue verifying the association between my organization’s name and the website URL provided. Despite uploading all these documents, my enrollment has not yet been completed. I would greatly appreciate it if someone could look into this matter in more detail and provide guidance on what might be causing the delay or if there are any additional steps I need to take. Thank you for your assistance. Best regards, Chibilyaev Alexandr
0
0
807
Aug ’24
Apple Wallet Not Detecting My Pass (.pkpass) - How to Identify the Issue?
I'm trying to add a pass to Apple Wallet, but it isn't being detected when I attempt to add it. I've created the .pkpass file, and it contains the following files: en.lproj/ icon.png icon@2x .png manifest.json pass.json signature { "formatVersion": 1, "passTypeIdentifier": "pass.com.yourdomain.com", "serialNumber": "123456", "teamIdentifier": "5ZXXXXXX", "description": "This is an Event Pass", "eventTicket": { "primaryFields": [ { "key": "event", "label": "EVENT", "value": "Concert" } ], "secondaryFields": [ { "key": "location", "label": "LOCATION", "value": "Example Venue" }, { "key": "date", "label": "DATE", "value": "2024-08-15" } ], "auxiliaryFields": [ { "key": "time", "label": "TIME", "value": "7:00 PM" } ], "backFields": [ { "key": "terms", "label": "TERMS & CONDITIONS", "value": "Non-refundable. Please arrive 30 minutes early." } ], "barcode": { "message": "1234567890", "format": "PKBarcodeFormatQR", "messageEncoding": "iso-8859-1" } }, "organizationName": "ORGANIZATION NAME", "logoText": "Concert 2024", "foregroundColor": "rgb(255, 255, 255)", "backgroundColor": "rgb(0, 0, 0)", "eventTicketStrip": { "primaryFields": [ { "key": "event", "label": "Event", "value": "Concert" } ] }, "relevantDate": "2024-08-15T19:00:00Z" } What I've Done So Far: Validated the Manifest: The SHA-1 hashes in the manifest.json match the actual files in the package. Checked the pass.json: It seems to be correctly formatted, and all fields are populated. Verified Pass Structure: The .pkpass file structure appears to be correct. Validate with PKpass Validator: It's seems like all points are valid I put screenshot over here. My Questions: What could be preventing Apple Wallet from detecting this pass? How can I verify if the signature is correctly applied? Are there any recommended online tools or methods to debug this pass and identify what might be wrong? I've tried using a few online validators, but the issue persists. Any guidance on how to resolve this would be greatly appreciated!
1
0
715
Aug ’24
App transfer - failed to retrieve info after app transfer
Hi! Like a bunch of people on the forums I'm having issues transferring my users from my previous Team to my new Team. When the app was still on the old team, I successfully generated transfer_subs for every one of my apple login users. Now, when trying to migrate them over, it ONLY works on users that have already signed in since the transfer, which is not good, I need to transfer the rest and get the new private relay emails. Here’s a curl of how I get my access token : I’m first generating the secret key using my team key that has apple sign in configured for it. curl --location 'https://appleid.apple.com/auth/token' --header 'Content-Type: application/x-www-form-urlencoded' --data-urlencode 'grant_type=client_credentials' --data-urlencode 'scope=user.migration' --data-urlencode 'client_id=my.app.id' --data-urlencode 'client_secret=*** This works and I’m getting my access token, then I try to exchange the sub token curl --location 'https://appleid.apple.com/auth/usermigrationinfo' --header 'Content-Type: application/x-www-form-urlencoded' --header 'Authorization: Bearer *** ' --data-urlencode 'transfer_sub=xx.xxxx' --data-urlencode 'client_id=my.app.id' --data-urlencode 'client_secret=***’ This is when I receive : {"error":"invalid_request","email_verified":false} I’ve tried a lot of stuff, even got on the phone with an ex apple engineer and tried a bunch of stuff with him, but to no avail. I've submitted a report on feedback assistant on the 23rd August, but no answer yet. ID: 14898085
1
0
605
Sep ’24
Face ID setup Issue on iOS beta on iPhone 13
my phone wouldn’t recognize my face so I tried resetting faceid but setting it up wasn’t working, it keeps saying on the screen move phone lower or higher and blurs the background and it just won’t proceed with the setup, I did a diagnostics report with apple support and it showed that there was no problems and that it might be because I’m using the iOS beta updates, so can you fix it with the next update, I even tried taking off my screen protector and my case thinking they might be the problem but it wasn’t resolved
0
1
500
Sep ’24
CloudKit console login error
Hi Cloudkit console not allow me to login as team member... the following message as come 'You are not a member of a developer team The Apple Account you are signed in with, , is not a member of any developer teams, which is necessary to use CloudKit Console. Join the Apple Developer Program or you can Sign Out in order to use a different account' I was used to logged in and browse my datas, still I'm a active team member in a development and access to all the app I've been using cloudkit data still in my apps... Please explain what to be done to browse my data Thanks Shankar
0
1
445
Sep ’24