Watchdog kills the app with 0x8BADF00D because of MusicKit activity

After integration with MusicKit, I have an issue with Watchdog. The crash log point on this stack trace:

ProcessState: Running
WatchdogEvent: scene-update
WatchdogVisibility: Background
WatchdogCPUStatistics: (
"Elapsed total CPU time (seconds): 72.560 (user 49.970, system 22.590), 39% CPU",
"Elapsed application CPU time (seconds): 11.270, 6% CPU"
) reportType:CrashLog maxTerminationResistance:Interactive>

Triggered by Thread:  0

Thread 0 Crashed:
0   libsystem_kernel.dylib        	       0x1dfa74808 mach_msg2_trap + 8
1   libsystem_kernel.dylib        	       0x1dfa78008 mach_msg2_internal + 80
2   libsystem_kernel.dylib        	       0x1dfa77f20 mach_msg_overwrite + 436
3   libsystem_kernel.dylib        	       0x1dfa77d60 mach_msg + 24
4   libdispatch.dylib             	       0x19e884b18 _dispatch_mach_send_and_wait_for_reply + 544
5   libdispatch.dylib             	       0x19e884eb8 dispatch_mach_send_with_result_and_wait_for_reply + 60
6   libxpc.dylib                  	       0x1f386bac8 xpc_connection_send_message_with_reply_sync + 264
7   Foundation                    	       0x195853998 __NSXPCCONNECTION_IS_WAITING_FOR_A_SYNCHRONOUS_REPLY__ + 16
8   Foundation                    	       0x195850004 -[NSXPCConnection _sendInvocation:orArguments:count:methodSignature:selector:withProxy:] + 2160
9   Foundation                    	       0x1958c820c -[NSXPCConnection _sendSelector:withProxy:arg1:] + 116
10  Foundation                    	       0x1958c7e80 _NSXPCDistantObjectSimpleMessageSend1 + 60
11  MediaPlayer                   	       0x1a8c0ff24 -[MPMusicPlayerController _validateServer] + 128
12  MediaPlayer                   	       0x1a8c3f4f8 -[MPMusicPlayerApplicationController _establishConnectionIfNeeded] + 2144
13  MediaPlayer                   	       0x1a8c0fbb8 -[MPMusicPlayerController onServer:] + 52
14  MediaPlayer                   	       0x1a8c0ec94 -[MPMusicPlayerController _nowPlaying] + 372
15  MediaPlayer                   	       0x1a8c161a4 -[MPMusicPlayerController nowPlayingItem] + 24
16  MusicKit                      	       0x213253e78 -[MusicKit_SoftLinking_MPMusicPlayerController nowPlayingItem] + 24
17  MusicKit                      	       0x2136ec1bc 0x2131b9000 + 5452220
18  MusicKit                      	       0x2136ec70c 0x2131b9000 + 5453580
19  MusicKit                      	       0x2136ed839 0x2131b9000 + 5457977
20  MusicKit                      	       0x213221c65 0x2131b9000 + 429157
21  MusicKit                      	       0x21354b741 0x2131b9000 + 3745601
22  libswift_Concurrency.dylib    	       0x1a1d0e775 completeTaskWithClosure(swift::AsyncContext*, swift::SwiftError*) + 1

According to the log - the app is in the background and the stack trace has only MusicKit. How could we disable or avoid this activity to avoid the Watchdog issue?

Watchdog kills the app with 0x8BADF00D because of MusicKit activity
 
 
Q