I am able to play video successfully using following:
player.Source = item.VideoUrls.First().Url;
await CrossMediaManager.Current.VideoPlayer.Play();
Then I paused the video using following code:
CrossMediaManager.Current.Pause();
But once video gets paused, I m trying to resume video using following code:
await CrossMediaManager.Current.VideoPlayer.Play();
But video is not getting resumed/played.
Please help.
Thanks in advance.