Search results for

“testflight the requested app is not avaliable”

416,639 results found

Post

Replies

Boosts

Views

Activity

Reply to iCloud Sync not working with iPhone, works fine for Mac.
Since this is obviously a widespread issue and affects Apple's own apps, it might be useful to draw some public attention to it. Submitting a tip to the usual Apple news sites (the forums hilariously edit the names out!) seems like a good start. I know Apple likes to say, Running to the press never helps, but....it absolutely does. The more high-profile the issue becomes, the more likely Apple is to push a 26.4.1 release to fix it. The alternative is waiting 1-2 months for the 26.5 release.
2d
Reply to System-wide deadlock in removexattr from revisiond / APFS
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. Yes, the APFS team got back to me about this and confirmed that this issue (r.173452670) was specifically fixed in 26.4. The underlying issue was actually a straightforward deadlock caused by apfs_vnop_removexattr taking locks in the wrong order (inode then decomp instead of decomp then inode). The issue itself was relatively rare because it required both specific actions (accessing the xattr at the same time as deletion) and fairly specific timing. Your ES client happens to be a case that specifically hits both cases. __ Kevin Elliott CoreOS/Hardware
Topic: App & System Services SubTopic: Core OS Tags:
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. Sort of. Strictly, the phone audio session is a different, private audio category that is similarly to AVAudioSessionCategoryPlayAndRecord but not identical. Even if we attempt to change the category , it will fail; we are kind of aware of this. This is actually standard behavior within the audio system, as you're not allowed to change categories while your session is active. CallKit adds two complications to that: CallKit handles session activation, so you don't directly know that you're activating your session. Your app cannot reliably reactivate the phone session, so if you manually deactivate, you may not be able to reactivate. This behaviour is applicable even for PusToTalk reported calls; can you please confirm? Yes. The PushToTalk f
Topic: Media Technologies SubTopic: Audio Tags:
2d
Does the OS has dedicated volume levels for each AVAudioSessionCategory.
We have an VoiP application, our application can be configured to amplify the PCM samples before feeding it to the Player to achieve volume gain at the receiver. In order to support this, We follow as below. If User has configured this Gain Settings within application, Application applies the amplification for the samples to introduce the gain. Application will also set the AVAudioSessionCategory to AVAudioSessionCategoryPlayback Provided the User has chosen the output to Speaker. This settings was working for us but we see there is a difference in behaviour w.r.t Volume Level System Settings between OS 26.3.1 and OS 26.4 When user has chosen earpiece as Output, then we will set the AVAudioSessionCategory to AVAudioSessionCategoryPlayAndRecord. User would have set the volume level to minimum. When user will change the output to Speaker, then we will set the AVAudioSessionCategory to AVAudioSessionCategoryPlayback. The expectation is, the volume level should be of A
4
0
703
2d
Notification content extension not working
Are there some requirements to use Notification Content Extensions other than including the target to my iOS app? I have done it, configured it to match a certain category of notifications, but my custom interface doesn’t show up. is there anything I need to configure on my main app? Is that anything that should be changed there, such as disabking its botifications handling? is there any requirement concerning the payload? I tried to disable time sensitive and content-available notifications, but it didn’t help.
1
0
56
2d
Reply to Notification content extension not working
There could be many reasons for the extension to fail: project misconfiguration so the extension is not bundled correctly extension misconfiguration so the extension is not attempted to run for the notification (unrecognized category, for example) extension not being launched due to some error extension being launched but crashing on launch (code error, the extension using more memory than allowed (24MB as of this writing), etc.) The best way to start diagnosing the issue would be to examine the console logs and see if you can see any specific errors, crashes, or messages pertaining to why the extension may be failing, and start from there. If you have not gone through the article Customizing the Appearance of Notifications, that would be a good reference too.
2d
Why do random errOSAInternalTableOverflow errors return when running AppleScripts via ScriptingBridge?
We have an app that controls InDesign Desktop and InDesignServer via hundreds of AppleScripts. Some macOS security updates a while back dictated that we start communicating with other apps via ScriptingBridge. We couldn't afford to convert the hundreds of AppleScripts into direct ScriptingBridge nomenclature, so we opted to keep them as is and instead tell the external apps to: [app doScript: language:InDesignScLgApplescriptLanguage withArguments:nil undoMode:InDesignESUMScriptRequest undoName:@blah] There are a handful of scripts that we did convert to direct ScriptingBridge. There are times (and under the right circumstances, it's repeatable) when a certain script will have run perfectly dozens of times, and then it will throw errOSAInternalTableOverflow. We create a new SBApplication for every job (which could be a single instance of Desktop or the multiple instances of Server). Why is this error happening seemingly randomly? Is there anything we can do to work around or
8
0
302
2d
Reply to Why do random errOSAInternalTableOverflow errors return when running AppleScripts via ScriptingBridge?
Today I noticed that when SB fails, the SBApplication object says isRunning is NO, but the InDesign application it's pointing to is still very much alive and running. If I create a new SBApplication when this happens and run the same script that just failed, it works fine. Something is screwing up the SBApplication in some way. I'll add this to the bug.
2d
Apple Developer Program membership still not active after payment (3 weeks)
Title: Apple Developer Program membership still not active after payment (3 weeks) Hello, I purchased the Apple Developer Program membership on February 6, 2026. The payment was successfully charged and the invoice was issued. However, my membership still appears as inactive in my developer account, and I cannot proceed with app submission. I have already contacted Apple Developer Support but have not received a response yet. Has anyone experienced a similar delay or know what else I should check? Details: Purchase date: 06.02.2026 Invoice Number: MC49961752 Apple Order Number: AET2317962 Any guidance would be appreciated. Thank you.
7
0
294
2d
com.apple.developer.mail-client entitlement issue
We have an app with the default email entitlement that was granted several years ago. During our latest deployment, we received an error from our pipeline. When testing a manual submission in Xcode, we saw this error: Entitlement com.apple.developer.mail-client not found and could not be included in profile. This likely is not a valid entitlement and should be removed from your entitlements file. We checked the provisioning profile, and the default email entitlement is still present. It is visible on the certificate portal and also in the embedded.mobileprovision file. Can you suggest what we can do to release a new version of our app?
3
0
217
2d
Reply to com.apple.developer.mail-client entitlement issue
@MetaImre Entitlement com.apple.developer.mail-client not found and could not be included in profile. This likely is not a valid entitlement and should be removed from your entitlements file. What is the type (Development, Ad hoc, Distribution) of your provisioning profile? The com.apple.developer.mail-client entitlement is only supported for apps built for Development and Distribution.
Topic: Code Signing SubTopic: Entitlements Tags:
3d
Reply to iCloud Sync not working with iPhone, works fine for Mac.
Since this is obviously a widespread issue and affects Apple's own apps, it might be useful to draw some public attention to it. Submitting a tip to the usual Apple news sites (the forums hilariously edit the names out!) seems like a good start. I know Apple likes to say, Running to the press never helps, but....it absolutely does. The more high-profile the issue becomes, the more likely Apple is to push a 26.4.1 release to fix it. The alternative is waiting 1-2 months for the 26.5 release.
Replies
Boosts
Views
Activity
2d
Contact Us Page Down
Hi. Your Contact Us page has been down for at least 2 months. There is no way to contact you. I'm locked out of my Apple Developer Account. What can I do here? I'm also shocked that a company as big as Apple has not fixed this page yet. It's kind of crazy.
Replies
1
Boosts
0
Views
37
Activity
2d
Reply to NSTextAttachment.character symbol suddenly not available anymore resulting in compiler error
Do you have a feedback report yet? If not, would you mind to file one and share your report ID here? Thanks. Best, —— Ziqiao Chen  Worldwide Developer Relations.
Topic: UI Frameworks SubTopic: AppKit Tags:
Replies
Boosts
Views
Activity
2d
Reply to System-wide deadlock in removexattr from revisiond / APFS
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. Yes, the APFS team got back to me about this and confirmed that this issue (r.173452670) was specifically fixed in 26.4. The underlying issue was actually a straightforward deadlock caused by apfs_vnop_removexattr taking locks in the wrong order (inode then decomp instead of decomp then inode). The issue itself was relatively rare because it required both specific actions (accessing the xattr at the same time as deletion) and fairly specific timing. Your ES client happens to be a case that specifically hits both cases. __ Kevin Elliott CoreOS/Hardware
Topic: App & System Services SubTopic: Core OS Tags:
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. Sort of. Strictly, the phone audio session is a different, private audio category that is similarly to AVAudioSessionCategoryPlayAndRecord but not identical. Even if we attempt to change the category , it will fail; we are kind of aware of this. This is actually standard behavior within the audio system, as you're not allowed to change categories while your session is active. CallKit adds two complications to that: CallKit handles session activation, so you don't directly know that you're activating your session. Your app cannot reliably reactivate the phone session, so if you manually deactivate, you may not be able to reactivate. This behaviour is applicable even for PusToTalk reported calls; can you please confirm? Yes. The PushToTalk f
Topic: Media Technologies SubTopic: Audio Tags:
Replies
Boosts
Views
Activity
2d
Does the OS has dedicated volume levels for each AVAudioSessionCategory.
We have an VoiP application, our application can be configured to amplify the PCM samples before feeding it to the Player to achieve volume gain at the receiver. In order to support this, We follow as below. If User has configured this Gain Settings within application, Application applies the amplification for the samples to introduce the gain. Application will also set the AVAudioSessionCategory to AVAudioSessionCategoryPlayback Provided the User has chosen the output to Speaker. This settings was working for us but we see there is a difference in behaviour w.r.t Volume Level System Settings between OS 26.3.1 and OS 26.4 When user has chosen earpiece as Output, then we will set the AVAudioSessionCategory to AVAudioSessionCategoryPlayAndRecord. User would have set the volume level to minimum. When user will change the output to Speaker, then we will set the AVAudioSessionCategory to AVAudioSessionCategoryPlayback. The expectation is, the volume level should be of A
Replies
4
Boosts
0
Views
703
Activity
2d
Notification content extension not working
Are there some requirements to use Notification Content Extensions other than including the target to my iOS app? I have done it, configured it to match a certain category of notifications, but my custom interface doesn’t show up. is there anything I need to configure on my main app? Is that anything that should be changed there, such as disabking its botifications handling? is there any requirement concerning the payload? I tried to disable time sensitive and content-available notifications, but it didn’t help.
Replies
1
Boosts
0
Views
56
Activity
2d
Reply to Notification content extension not working
There could be many reasons for the extension to fail: project misconfiguration so the extension is not bundled correctly extension misconfiguration so the extension is not attempted to run for the notification (unrecognized category, for example) extension not being launched due to some error extension being launched but crashing on launch (code error, the extension using more memory than allowed (24MB as of this writing), etc.) The best way to start diagnosing the issue would be to examine the console logs and see if you can see any specific errors, crashes, or messages pertaining to why the extension may be failing, and start from there. If you have not gone through the article Customizing the Appearance of Notifications, that would be a good reference too.
Replies
Boosts
Views
Activity
2d
Why do random errOSAInternalTableOverflow errors return when running AppleScripts via ScriptingBridge?
We have an app that controls InDesign Desktop and InDesignServer via hundreds of AppleScripts. Some macOS security updates a while back dictated that we start communicating with other apps via ScriptingBridge. We couldn't afford to convert the hundreds of AppleScripts into direct ScriptingBridge nomenclature, so we opted to keep them as is and instead tell the external apps to: [app doScript: language:InDesignScLgApplescriptLanguage withArguments:nil undoMode:InDesignESUMScriptRequest undoName:@blah] There are a handful of scripts that we did convert to direct ScriptingBridge. There are times (and under the right circumstances, it's repeatable) when a certain script will have run perfectly dozens of times, and then it will throw errOSAInternalTableOverflow. We create a new SBApplication for every job (which could be a single instance of Desktop or the multiple instances of Server). Why is this error happening seemingly randomly? Is there anything we can do to work around or
Replies
8
Boosts
0
Views
302
Activity
2d
Reply to Why do random errOSAInternalTableOverflow errors return when running AppleScripts via ScriptingBridge?
Today I noticed that when SB fails, the SBApplication object says isRunning is NO, but the InDesign application it's pointing to is still very much alive and running. If I create a new SBApplication when this happens and run the same script that just failed, it works fine. Something is screwing up the SBApplication in some way. I'll add this to the bug.
Replies
Boosts
Views
Activity
2d
Apple Developer Program membership still not active after payment (3 weeks)
Title: Apple Developer Program membership still not active after payment (3 weeks) Hello, I purchased the Apple Developer Program membership on February 6, 2026. The payment was successfully charged and the invoice was issued. However, my membership still appears as inactive in my developer account, and I cannot proceed with app submission. I have already contacted Apple Developer Support but have not received a response yet. Has anyone experienced a similar delay or know what else I should check? Details: Purchase date: 06.02.2026 Invoice Number: MC49961752 Apple Order Number: AET2317962 Any guidance would be appreciated. Thank you.
Replies
7
Boosts
0
Views
294
Activity
2d
Reply to Anyone waiting long for Apple Developer approval?
I am also already waiting for 2 business days, and nothing happened. I did receive the order acknowledgement email, but no progress since. Can anybody from apple support help me out?
Replies
Boosts
Views
Activity
2d
Reply to Tahoe 26.4 breaks custom paths with NetFSMountURLSync?
Hello, why do not use NSWorkspace.shared.open(url) instead?
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
2d
com.apple.developer.mail-client entitlement issue
We have an app with the default email entitlement that was granted several years ago. During our latest deployment, we received an error from our pipeline. When testing a manual submission in Xcode, we saw this error: Entitlement com.apple.developer.mail-client not found and could not be included in profile. This likely is not a valid entitlement and should be removed from your entitlements file. We checked the provisioning profile, and the default email entitlement is still present. It is visible on the certificate portal and also in the embedded.mobileprovision file. Can you suggest what we can do to release a new version of our app?
Replies
3
Boosts
0
Views
217
Activity
2d
Reply to com.apple.developer.mail-client entitlement issue
@MetaImre Entitlement com.apple.developer.mail-client not found and could not be included in profile. This likely is not a valid entitlement and should be removed from your entitlements file. What is the type (Development, Ad hoc, Distribution) of your provisioning profile? The com.apple.developer.mail-client entitlement is only supported for apps built for Development and Distribution.
Topic: Code Signing SubTopic: Entitlements Tags:
Replies
Boosts
Views
Activity
3d