I've created a python skill, that should play mp3 file and display on screen APL document with images and information about the mp3 currently running.
the problem is that once the AudioPlayer starts to run, the APL document disappears and is replaced by the "Now Playing" screen of the AudioPlayer
Here is my code
handler_input.response_builder.add_directive( PlayDirective( play_behavior=PlayBehavior.REPLACE_ALL, audio_item=AudioItem( stream=Stream( token=token, url = get_sura_url(index,ayah_no,reciter_token), offset_in_milliseconds=offset_in_ms, expected_previous_token=None), metadata=None )) ) handler_input.response_builder.add_directive( RenderDocumentDirective( token=doc_token, document={ "type": "Link", "src": f"doc://alexa/apl/documents/MY_DOC" }, datasources=data_source ) )