Cannot set app shortcut platter background colour on visionOS

I am trying to set the background colour of my app shortcut platter for the visionOS version using NSAppIconComplementingColorNames but it doesn’t take effect when I check the shortcuts app. I see the built in Music Recognition app has a background colour but I am unable to set one for my app. Please note that this feature is working correctly on iOS. But on visionOS it has no effect and returns a plain background.

I am using Xcode 15.3 beta 2 and running the visionOS 1.1 simulator.

Sample code from Info.plist:

	<key>CFBundleIcons</key>
	<dict>
		<key>CFBundlePrimaryIcon</key>
		<dict>
			<key>NSAppIconComplementingColorNames</key>
			<array>
				<string>SMGreen</string>
				<string>DarkGreen</string>
			</array>
		</dict>
	</dict>

Feedback ID: FB13595442