I am using react-native-video, When I play video from any resource(url or local both) then in notification center music control show. But there is nothing information show in the notification. How can I add Image and title into the notification center [iOS].
My code look like this :-
<Video
key={song.id}
source={{ uri: song.url }}
ref={videoPlayer}
paused={IsPlaying}
playInBackground={true}
hideShutterView={true}
resizeMode={"cover"}
controls
onEnd={() => {
newProcess();
}}
poster={Thumbnail}
ignoreSilentSwitch={"ignore"}
style={styles.backgroundVideo}
fullscreenAutorotate={"landscape"}
fullscreenOrientation={"landscape"}
onFullScreen={true}
/>;
Thanks in advance.