Search results for

“testflight the requested app is not avaliable”

416,628 results found

Post

Replies

Boosts

Views

Activity

Core Spotlight Semantic Search - still non-functional for 1+ year after WWDC24?
After more than a year since the announcement, I'm still unable to get this feature working properly and wondering if there are known issues or missing implementation details. Current Setup: Device: iPhone 16 Pro Max iOS: 26 beta 3 Development: Tested on both Xcode 16 and Xcode 26 Implementation: Following the official documentation examples The Problem: Semantic search simply doesn't work. Lexical search functions normally, but enabling semantic search produces identical results to having it disabled. It's as if the feature isn't actually processing. Error Output (Xcode 26): [QPNLU][qid=5] Error Domain=com.apple.SpotlightEmbedding.EmbeddingModelError Code=-8007 Text embedding generation timeout (timeout=100ms) [CSUserQuery][qid=5] got a nil / empty embedding data dictionary [CSUserQuery][qid=5] semanticQuery failed to generate, using (false) In Xcode 16, there are no error messages at all - the semantic search just silently fails. Missing Resources: The sample application mentioned
4
0
1.7k
2d
Getting a basic URL Filter to work
I haven’t been able to get this to work at any level! I’m running into multiple issues, any light shed on any of these would be nice: I can’t implement a bloom filter that produces the same output as can be found in the SimpleURLFilter sample project, after following the textual description of it that’s available in the documentation. No clue what my implementation is doing wrong, and because of the nature of hashing, there is no way to know. Specifically: The web is full of implementations of FNV-1a and MurmurHash3, and they all produce different hashes for the same input. Can we get the proper hashes for some sample strings, so we know which is the “correct” one? Similarly, different implementations use different encodings for the strings to hash. Which should we use here? The formulas for numberOfBits and numberOfHashes give Doubles and assign them to Ints. It seems we should do this conversing by rounding them, is this correct? Can we get a sample correct value for the combined hash, so
57
0
5.2k
2d
Reply to XCode 16 and iOS 12 support
I’ve managed to run the Xcode 26.4 debugger with an app on an old iPhone 5s running 12.5.8 (though it failed for a different reason). The trick was to install a developer disk image for iOS 12.4. Since Xcode does not grab it from the old iPhone I found it on GitHub where someone collected these old images. You need to copy the dmg and signature to /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/DeviceSupport . Good luck.
2d
TestFlight build crashes from fetch descriptor
I have a FetchDescriptor that uses starts(with:) which works fine in debug builds but crashes in TestFlight and archive. For background information I'm using iCloud and model inheritance where the property being used in fetch descriptor is defined on the superclass, the fetch descriptor is for the subclass. Implementation: static func fetchDescriptor(nameStartingWith prefix: String) -> FetchDescriptor { let predicate = #Predicate { asset in asset.name.starts(with: prefix) } return FetchDescriptor(predicate: predicate) } @Model public class Asset: Identifiable { // MARK: - Properties var name: String = .... } @available(macOS 26.0, *) @Model public class ColorAsset: Asset { ... }
2
0
66
2d
Reply to Entitlement values for the Enhanced Security and the Additional Runtime Platform Restrictions
It seems to be the same problem where the App Review automated system hasn't been updated to accept the new entitlements even though Xcode 26.4 has been out for more than a week now. I've raised FB22387339 for this. It actually was fixed, but then a different change reintroduced the same failure (r.173858947). It may take a day or two, but this should be sorted out soon. __ Kevin Elliott DTS Engineer, CoreOS/Hardware
Topic: Privacy & Security SubTopic: General Tags:
2d
Reply to Tahoe 26.4 breaks custom paths with NetFSMountURLSync?
Removing this option now works for mounting but kind of defeats the purpose of calling NetFSMountURLSync since it now shows 3 dialogs (even after the initial approval, and storing the credentials in the keychain - it now always asks all 3 questions): Yes. To be clear, I was simply pointing out how kNAUIOptionKey was involved with this, not suggesting removing it was a fully acceptable alternative. Note: I did report this unexpected behavior in Feedback Assistant (not sure if that would even be the correct place to do this). Yes, that's the right place. What was the feedback number? Just being curious, what do you mean with Any location inside an app’s own container“? First, just so this is clear, mounting in your app's container doesn't work today (macOS 26.4), but is something that should work once we've corrected the current bug. In any case, every sandboxed app has its own private directory hierarchy which it can freely store files inside. In API terms, it's the
Topic: App & System Services SubTopic: Core OS Tags:
2d
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
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
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
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
Core Spotlight Semantic Search - still non-functional for 1+ year after WWDC24?
After more than a year since the announcement, I'm still unable to get this feature working properly and wondering if there are known issues or missing implementation details. Current Setup: Device: iPhone 16 Pro Max iOS: 26 beta 3 Development: Tested on both Xcode 16 and Xcode 26 Implementation: Following the official documentation examples The Problem: Semantic search simply doesn't work. Lexical search functions normally, but enabling semantic search produces identical results to having it disabled. It's as if the feature isn't actually processing. Error Output (Xcode 26): [QPNLU][qid=5] Error Domain=com.apple.SpotlightEmbedding.EmbeddingModelError Code=-8007 Text embedding generation timeout (timeout=100ms) [CSUserQuery][qid=5] got a nil / empty embedding data dictionary [CSUserQuery][qid=5] semanticQuery failed to generate, using (false) In Xcode 16, there are no error messages at all - the semantic search just silently fails. Missing Resources: The sample application mentioned
Replies
4
Boosts
0
Views
1.7k
Activity
2d
Getting a basic URL Filter to work
I haven’t been able to get this to work at any level! I’m running into multiple issues, any light shed on any of these would be nice: I can’t implement a bloom filter that produces the same output as can be found in the SimpleURLFilter sample project, after following the textual description of it that’s available in the documentation. No clue what my implementation is doing wrong, and because of the nature of hashing, there is no way to know. Specifically: The web is full of implementations of FNV-1a and MurmurHash3, and they all produce different hashes for the same input. Can we get the proper hashes for some sample strings, so we know which is the “correct” one? Similarly, different implementations use different encodings for the strings to hash. Which should we use here? The formulas for numberOfBits and numberOfHashes give Doubles and assign them to Ints. It seems we should do this conversing by rounding them, is this correct? Can we get a sample correct value for the combined hash, so
Replies
57
Boosts
0
Views
5.2k
Activity
2d
Reply to Getting a basic URL Filter to work
I cannot even get the sample project to work: https://developer.apple.com/documentation/networkextension/setting-up-a-pir-server-for-url-filtering @KayleeSC any words of advice you can share (gotchas)?
Replies
Boosts
Views
Activity
2d
XCode 16 and iOS 12 support
Checking other posts iOS 12 should still be supported but the having upgraded an App in App Store it will not run on iOS 12 devices. Is there a trick to building for iOS12 support or has the goal post moved to iOS 15 which I find in specs for XCode
Replies
2
Boosts
0
Views
233
Activity
2d
Reply to XCode 16 and iOS 12 support
I’ve managed to run the Xcode 26.4 debugger with an app on an old iPhone 5s running 12.5.8 (though it failed for a different reason). The trick was to install a developer disk image for iOS 12.4. Since Xcode does not grab it from the old iPhone I found it on GitHub where someone collected these old images. You need to copy the dmg and signature to /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/DeviceSupport . Good luck.
Replies
Boosts
Views
Activity
2d
TestFlight build crashes from fetch descriptor
I have a FetchDescriptor that uses starts(with:) which works fine in debug builds but crashes in TestFlight and archive. For background information I'm using iCloud and model inheritance where the property being used in fetch descriptor is defined on the superclass, the fetch descriptor is for the subclass. Implementation: static func fetchDescriptor(nameStartingWith prefix: String) -> FetchDescriptor { let predicate = #Predicate { asset in asset.name.starts(with: prefix) } return FetchDescriptor(predicate: predicate) } @Model public class Asset: Identifiable { // MARK: - Properties var name: String = .... } @available(macOS 26.0, *) @Model public class ColorAsset: Asset { ... }
Replies
2
Boosts
0
Views
66
Activity
2d
Reply to Entitlement values for the Enhanced Security and the Additional Runtime Platform Restrictions
It seems to be the same problem where the App Review automated system hasn't been updated to accept the new entitlements even though Xcode 26.4 has been out for more than a week now. I've raised FB22387339 for this. It actually was fixed, but then a different change reintroduced the same failure (r.173858947). It may take a day or two, but this should be sorted out soon. __ Kevin Elliott DTS Engineer, CoreOS/Hardware
Topic: Privacy & Security SubTopic: General Tags:
Replies
Boosts
Views
Activity
2d
Reply to Tahoe 26.4 breaks custom paths with NetFSMountURLSync?
Removing this option now works for mounting but kind of defeats the purpose of calling NetFSMountURLSync since it now shows 3 dialogs (even after the initial approval, and storing the credentials in the keychain - it now always asks all 3 questions): Yes. To be clear, I was simply pointing out how kNAUIOptionKey was involved with this, not suggesting removing it was a fully acceptable alternative. Note: I did report this unexpected behavior in Feedback Assistant (not sure if that would even be the correct place to do this). Yes, that's the right place. What was the feedback number? Just being curious, what do you mean with Any location inside an app’s own container“? First, just so this is clear, mounting in your app's container doesn't work today (macOS 26.4), but is something that should work once we've corrected the current bug. In any case, every sandboxed app has its own private directory hierarchy which it can freely store files inside. In API terms, it's the
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
2d
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
36
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
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
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
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