Post

Replies

Boosts

Views

Activity

Apple Intelligence stuck at 100% on macOS 26 Beta 1
Hello, I'm unable to develop for Apple Intelligence on my Mac Studio, M1 Max running macOS 26 beta 1. The models get downloaded and I can also verify that they exist in /System/Library/AssetsV2/ however the download progress remains stuck at 100%. Checking console logs shows the process generativeexperiencesd reporting the following: My device region and language is set to English (India). Things I've already tried: Changing language and region to English (US) Reinstalling macOS Trying with a different ISP via hotspot.
6
10
360
Jun ’25
FinanceKit Mock Data
Hello, I'm building an expense management app and have the necessary FinanceKit entitlements. However I'm based in India and hence do not have access to an Apple Card. Is there anyway to test FinanceKit with some sort of mock data? I have tried following the developer documentation and built a minimal implementation to share via Testflight to my users. However it's failing to get any transaction data. I'm unable to debug the code myself and if anyone here has valid entitlements along with Apple Card, I'd appreciate if you could debug an example project I made below: https://github.com/tanmays/FinanceKitExample Feedback #FB14136552
0
0
388
Jan ’25
Media Player Queue Descriptors broken on Mac Catalyst
Hello, I'm the developer of an Apple Music app called Soor, I've been recently working on adding Catalyst support to the app. However, I've noticed some severe bugs while setting the queue for playing non-library items on macOS 12.2. Both MPMusicPlayerPlayParametersQueueDescriptor and MPMusicPlayerStoreQueueDescriptor fail to play items using valid playbackStore identifiers. The console logs the following errors: [SDKPlayback] systemMusicPlayer _establishConnectionIfNeeded timeout [ping did not pong] `[SDKPlayback] Failed to prepareToPlay error: Error Domain=NSOSStatusErrorDomain Code=9205 "(null)"` I have filed radars for this along with sample projects showcasing the issue. FB9890270 and FB9890331. Here's a gist of the sample code for which the player either completely fails to set the queue or now playing item stays nil. /// These are valid playback store ids retrieved from Apple Music API. /// You may replace them with any valid playback store IDs of your choice. let playbackStoreIDs = ["1588418743", "1604815955", "1596475453", "1562346959", "1596475469", "1596475460", "1580955750", "1591442362", "1607324602", "1531596345"] var playParams = [MPMusicPlayerPlayParameters]() for playbackStoreID in playbackStoreIDs { let param = MPMusicPlayerPlayParameters(dictionary: ["id": playbackStoreID, "kind": "song"])! playParams.append(param) } let queueDesc = MPMusicPlayerPlayParametersQueueDescriptor(playParametersQueue: playParams) queueDesc.startItemPlayParameters = playParams[3] player.setQueue(with: queueDesc) player.play() Has anyone managed to playback music correctly using only playback store ids on Catalyst?
7
0
2.1k
Feb ’22