Search results for

“testflight the requested app is not avaliable”

416,627 results found

Post

Replies

Boosts

Views

Activity

Reply to Unable to Control Optical Zoom via USB (UVC) in Custom Swift App, While Prebuilt App Works
I suggest you get in touch with the maintainer of the project you cite. I tried building it, but it went off into the weeds when trying to parse the USB descriptor of three different UVC cameras. Have you found the code which enables/disables the zoom control? That should give you some clue. You said tt seems that the zoom control commands are not successfully sent or recognized by the camera - which is it - sent, or recognized? Does your code send the command? How? (show code). Does the camera or the USB stack return an error, and if so, which error? You're not giving us much to go on here.
2d
Enrollment program stuck in pending for 3 weeks and callback button not working.
Hello, I enrolled in the Apple Developer Program and paid on March 11th. Georgian address, Georgian card, Georgian region set on the account. The payment went through 3 times with email acknowledgements each time, but the account is still stuck on pending. I contacted support by email on March 19th (Case: 102848062117) and again on March 26th (Case: 102853109499), including my phone number. The only visible change since then is that I now have an option to confirm my phone number and get called back, but when I click on it, nothing happens. It just redirects me back to the list of cases I opened. Please escalate so we can resolve the issue.
0
0
54
2d
Reply to System-wide deadlock in removexattr from revisiond / APFS
I think we finally found a way to reproduce the issue in a reliable way (a stress binary which mixes random file creations, APFS transparent compression, and extended attributes adding and removal, all this mixed in a ton of different threads). A kernel deadlock (similar to the real one we have) usually happens after 15-20 minutes of this stress binary running, without needing any Endpoint Security client to be registered (and without needing root privileges): it works on a fresh clean VM. We reproduce it on macOS 15 and macOS 26, up to 26.4 (not included) — the tool ran for hours on this macOS version without any repro. So I believe the issue was actually fixed starting from 26.4. We are continuing our test to confirm that. We can add this tool in the feedback / DTS ticket if needed, but if the bug is fixed, I guess Apple kernel team figured out a way to reproduce it themselves.
Topic: App & System Services SubTopic: Core OS Tags:
2d
NWHotSpotConfiguration not providing a helpful error message
I have the following code that is attempting to set up Hotspot 2.0 using an EAP-TLS configuration. I am importing a pk12 file and using those certificates. I have tried all manner of permutations for the configuration, and have narrowed down all the errors I was getting and now I am just getting a generic: Error: invalid EAP settings. I have tried adding the identity separately and either get an entitlements issue which I can't figure out why since I have added the required network extension sharing groups, or a duplicate item error, meaning it was already correctly added. The certificate and configuration are correctly working through an Android app already. static let accessGroup: String? = { guard let prefix = Bundle.main.object(forInfoDictionaryKey: AppIdentifierPrefix) as? String else { print(Could not load group) return nil } return (prefix)com.apple.networkextensionsharing }() static func setupHotspot(data: CertificateData) { let h20 = NEHotspotHS20Settings(domainName: data.realm, roa
3
0
47
2d
Reply to How to recreate Apple Music mini player transition in SwiftUI
Hello @sheikhbayazid This is a great start! While we are unable to share exactly how Apple achieved this in the Music app, you might still find the following helpful: [quote='820932021, sheikhbayazid, /thread/820932, /profile/sheikhbayazid'] Should this be a custom container instead of fullScreenCover? [/quote] You might be looking for a sheet. Users can swipe down to dismiss a sheet interactively by default. .fullScreenCover has no built-in-swipe-to-dismiss, you must provide an explicit mechanism, like a dismiss button. For more information on Sheets see https://developer.apple.com/design/human-interface-guidelines/sheets [quote='820932021, sheikhbayazid, /thread/820932, /profile/sheikhbayazid'] How would you support both new and older iOS versions? [/quote] Configure the Xcode project to support the intended lowest OS version, then use conditionals to handle differences between iOS versions with availability checks such as #available if #available(iOS 18.0, *) { // Content in iOS 18.0 and
Topic: UI Frameworks SubTopic: SwiftUI Tags:
2d
Production Mac app becomes progressively unusable in Issues workspace; Mac_Dev remains fast
The production macOS build is showing severe performance problems, while Mac_Dev performs normally. Observed behavior in production Mac build: Issue board scrolling becomes inconsistent or nearly unusable Changing an issue status in detail view is very slow Scrolling the status menu/options can be slow Typing in issue description/notes fields becomes sluggish Dragging issues between milestones/statuses on the board can lag badly Observed behavior in Mac_Dev: Board scrolling is smooth Status changes are immediate Typing in description fields is responsive Drag/drop between milestones works well Important comparison: Mac_Dev appears to run against an isolated local SwiftData store Production Mac app uses the normal CloudKit-backed store Because the same UI is fast in Mac_Dev, this does not look like a pure rendering problem Most likely cause is production store / CloudKit sync churn amplifying existing SwiftUI invalidation and save behavior Current hypothesis: The production app is sa
2
0
47
2d
EADemo Not Sending/Recieving Session Packets
Hi, We are currently in the process of getting an custom iAP2 device communicating via USB-C. We have been using the 'EADemo' app as a test app to ensure full function before certification. Currently, the device completes the authentication and identification successfully. The device appears within the 'EADemo' app, and we are able to select it and see the available protocol. Selecting the protocol sends the EAStartSession command to the accessory and we ACK it. This is where the issues begin. Attempting to send either a string or hex packet results in nothing being sent. The app does not appear to attempt to send a packet when these are pressed. The 'EADemo' app also does not increment its receive counter when the accessory sends an EA packet, but we do receive the ACK from the device. This indicates the device is receiving the packet, but not processing it in app. Sending the EASessionStatus from the accessory with a status of
1
0
26
2d
Reply to Does the OS has dedicated volume levels for each AVAudioSessionCategory.
For CallKit Call Reported Calls As it is having the highest priority as a phone call , we are not changing the category to AVAudioSessionCategoryPlayback , we will remain in AVAudioSessionCategoryPlayAndRecord. Even if we attempt to change the category , it will fail, we are kind of aware of this. This behaviour is applicable even for PusToTalk reported calls , can you please confirm?
Topic: Media Technologies SubTopic: Audio Tags:
2d
Window size of iOS app running on Mac
I need constraint the window size for an iOS app running on Mac. That's easy for a MacApp, using self.window?.minSize.width = 450 self.window?.maxSize.width = 450 or use func windowDidResize(_ notification: Notification) { } but how to achieve it in UIKit ?
Replies
3
Boosts
0
Views
153
Activity
2d
Reply to time speaking after sending system to sleep
this forum is for questions related to developing software for Apple platforms. your question would be better asked at https://discussions.apple.com
Replies
Boosts
Views
Activity
2d
Reply to App Startup with Debugger in Xcode 26 is slow
Hello, Can we have an update on the progress ? It's been several months, we're now at Xcode 26.5, and still no fix in sight for this issue. We are still stuck on Xcode 16 for any kind of device debugging and we are not alone...
Replies
Boosts
Views
Activity
2d
Reply to Unable to Control Optical Zoom via USB (UVC) in Custom Swift App, While Prebuilt App Works
I suggest you get in touch with the maintainer of the project you cite. I tried building it, but it went off into the weeds when trying to parse the USB descriptor of three different UVC cameras. Have you found the code which enables/disables the zoom control? That should give you some clue. You said tt seems that the zoom control commands are not successfully sent or recognized by the camera - which is it - sent, or recognized? Does your code send the command? How? (show code). Does the camera or the USB stack return an error, and if so, which error? You're not giving us much to go on here.
Replies
Boosts
Views
Activity
2d
Reply to App Review stuck for weeks on individual account, expedite requests ignored, multiple apps affected
Thank you for your post. We're investigating and will contact you in App Store Connect to provide further assistance. If you continue to experience issues during review, please contact us.
Replies
Boosts
Views
Activity
2d
Reply to X button disappeared on iPadOS 26.4 in MFMailComposeViewController
As a workaround, the mail composer is no longer presented fullscreen, allowing it to be dismissed by tapping outside the mail window. An updated version of the app has been submitted for review following user reports.
Topic: UI Frameworks SubTopic: UIKit
Replies
Boosts
Views
Activity
2d
Reply to 10-Bit UVC on iPadOS
Dear bradley_7, 10-bit UVC is not supported on iPadOS nor macOS, and might not be officially supported in the UVC specification. Thanks for asking, Richard Yeh  Developer Technical Support
Topic: Media Technologies SubTopic: Video Tags:
Replies
Boosts
Views
Activity
2d
Enrollment program stuck in pending for 3 weeks and callback button not working.
Hello, I enrolled in the Apple Developer Program and paid on March 11th. Georgian address, Georgian card, Georgian region set on the account. The payment went through 3 times with email acknowledgements each time, but the account is still stuck on pending. I contacted support by email on March 19th (Case: 102848062117) and again on March 26th (Case: 102853109499), including my phone number. The only visible change since then is that I now have an option to confirm my phone number and get called back, but when I click on it, nothing happens. It just redirects me back to the list of cases I opened. Please escalate so we can resolve the issue.
Replies
0
Boosts
0
Views
54
Activity
2d
Reply to System-wide deadlock in removexattr from revisiond / APFS
I think we finally found a way to reproduce the issue in a reliable way (a stress binary which mixes random file creations, APFS transparent compression, and extended attributes adding and removal, all this mixed in a ton of different threads). A kernel deadlock (similar to the real one we have) usually happens after 15-20 minutes of this stress binary running, without needing any Endpoint Security client to be registered (and without needing root privileges): it works on a fresh clean VM. We reproduce it on macOS 15 and macOS 26, up to 26.4 (not included) — the tool ran for hours on this macOS version without any repro. So I believe the issue was actually fixed starting from 26.4. We are continuing our test to confirm that. We can add this tool in the feedback / DTS ticket if needed, but if the bug is fixed, I guess Apple kernel team figured out a way to reproduce it themselves.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
2d
NWHotSpotConfiguration not providing a helpful error message
I have the following code that is attempting to set up Hotspot 2.0 using an EAP-TLS configuration. I am importing a pk12 file and using those certificates. I have tried all manner of permutations for the configuration, and have narrowed down all the errors I was getting and now I am just getting a generic: Error: invalid EAP settings. I have tried adding the identity separately and either get an entitlements issue which I can't figure out why since I have added the required network extension sharing groups, or a duplicate item error, meaning it was already correctly added. The certificate and configuration are correctly working through an Android app already. static let accessGroup: String? = { guard let prefix = Bundle.main.object(forInfoDictionaryKey: AppIdentifierPrefix) as? String else { print(Could not load group) return nil } return (prefix)com.apple.networkextensionsharing }() static func setupHotspot(data: CertificateData) { let h20 = NEHotspotHS20Settings(domainName: data.realm, roa
Replies
3
Boosts
0
Views
47
Activity
2d
Reply to How to recreate Apple Music mini player transition in SwiftUI
Hello @sheikhbayazid This is a great start! While we are unable to share exactly how Apple achieved this in the Music app, you might still find the following helpful: [quote='820932021, sheikhbayazid, /thread/820932, /profile/sheikhbayazid'] Should this be a custom container instead of fullScreenCover? [/quote] You might be looking for a sheet. Users can swipe down to dismiss a sheet interactively by default. .fullScreenCover has no built-in-swipe-to-dismiss, you must provide an explicit mechanism, like a dismiss button. For more information on Sheets see https://developer.apple.com/design/human-interface-guidelines/sheets [quote='820932021, sheikhbayazid, /thread/820932, /profile/sheikhbayazid'] How would you support both new and older iOS versions? [/quote] Configure the Xcode project to support the intended lowest OS version, then use conditionals to handle differences between iOS versions with availability checks such as #available if #available(iOS 18.0, *) { // Content in iOS 18.0 and
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
2d
Production Mac app becomes progressively unusable in Issues workspace; Mac_Dev remains fast
The production macOS build is showing severe performance problems, while Mac_Dev performs normally. Observed behavior in production Mac build: Issue board scrolling becomes inconsistent or nearly unusable Changing an issue status in detail view is very slow Scrolling the status menu/options can be slow Typing in issue description/notes fields becomes sluggish Dragging issues between milestones/statuses on the board can lag badly Observed behavior in Mac_Dev: Board scrolling is smooth Status changes are immediate Typing in description fields is responsive Drag/drop between milestones works well Important comparison: Mac_Dev appears to run against an isolated local SwiftData store Production Mac app uses the normal CloudKit-backed store Because the same UI is fast in Mac_Dev, this does not look like a pure rendering problem Most likely cause is production store / CloudKit sync churn amplifying existing SwiftUI invalidation and save behavior Current hypothesis: The production app is sa
Replies
2
Boosts
0
Views
47
Activity
2d
EADemo Not Sending/Recieving Session Packets
Hi, We are currently in the process of getting an custom iAP2 device communicating via USB-C. We have been using the 'EADemo' app as a test app to ensure full function before certification. Currently, the device completes the authentication and identification successfully. The device appears within the 'EADemo' app, and we are able to select it and see the available protocol. Selecting the protocol sends the EAStartSession command to the accessory and we ACK it. This is where the issues begin. Attempting to send either a string or hex packet results in nothing being sent. The app does not appear to attempt to send a packet when these are pressed. The 'EADemo' app also does not increment its receive counter when the accessory sends an EA packet, but we do receive the ACK from the device. This indicates the device is receiving the packet, but not processing it in app. Sending the EASessionStatus from the accessory with a status of
Replies
1
Boosts
0
Views
26
Activity
2d
Reply to Subscription waiting for review
Thank you for your post. We're investigating currently. A representative from App Review will contact you to provide further assistance. If you continue to experience issues during review, please contact us.
Replies
Boosts
Views
Activity
2d
Reply to Does the OS has dedicated volume levels for each AVAudioSessionCategory.
For CallKit Call Reported Calls As it is having the highest priority as a phone call , we are not changing the category to AVAudioSessionCategoryPlayback , we will remain in AVAudioSessionCategoryPlayAndRecord. Even if we attempt to change the category , it will fail, we are kind of aware of this. This behaviour is applicable even for PusToTalk reported calls , can you please confirm?
Topic: Media Technologies SubTopic: Audio Tags:
Replies
Boosts
Views
Activity
2d