(This only started happening as of Xcode 26.)
I know macOS and watchOS don't support this property, but all other platforms do (did?) up until I upgraded Xcode. Now when I compile I get this:
Value of type 'AVPlayerItem' has no member 'externalMetadata'
Hey @Suges,
You haven't gone crazy :)
After doing a little more investigating, you can access the externalMetadata property on AVPlayerItem in Xcode 26 if you import AVKit.
I don't think that requirement has changed, is it possible that when you upgraded to Xcode 26 you changed something about the frameworks you were importing?
In any case, you should be unblocked by importing AVKit.
-- Greg