I have Ionic app with embedded Vimeo videos. I embed video as described in the official Vimeo documentation:
<iframe src="https://player.vimeo.com/video/...?api=1&autoplay=1" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>
Everything works well in browser.
In android emulator and real devices videos play in fullscreen mode. It's OK.
The problem happens when I try to exit fullscreen mode. On emulator and some devices when I press back button the app closes silently, on others - app closes with error.
What am I missing?
How can I exit the player and navigate back to the page where iframe with video is rendred?
Thanks!