Music.app Entitlements Needed for Apple Script?

I have an existing Mac App I had written that's written using the AppleScript to Obj-C Bridge to iTunes.


I'd like to support Music.app in Catalina. Using Script Editor, I see that essentially all of the Apple Script commands from iTunes still work the same for Music.app.


Unfortunately, I cannot get my App to talk to iTunes.


I tried to modify the existing security entitlement I was using from iTunes to Music, but that didn't help.


I also came across the suggestion below, but I still can't seem to get my App to talk to Music via AppleScript.


Does anyone have any suggestions for getting this to work? Thanks!


<?xml version="1.0" encoding="UTF-8"?>

<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN""http://www.apple.com/DTDs/PropertyList-1.0.dtd">

<plist version="1.0">

<dict>

<key>com.apple.security.app-sandbox</key>

<true/>

<key>com.apple.security.scripting-targets</key>

<dict>

<key>com.apple.Music</key>

<array>

<string>com.apple.Music.device</string>

<string>com.apple.Music.library.playback</string>

<string>com.apple.Music.user-interface</string>

<string>com.apple.Music.playback</string>

</array>

</dict>

</dict>

</plist>

Music.app Entitlements Needed for Apple Script?
 
 
Q