I'm trying to play video that is packaged within the project but it does not work. However videos from the web work just fine.
This problem is android specific, works fine on iOS.
I've been searching, but mostly people have problems with older versions, where they can't play any of the video's, hence I made a new question which is not duplicate because, again, videos are working fine, only those who are packaged with the project itself does not.
Working example
<video autoplay controls width="1024" height="714" class="videoWrapper">
<source src="http://web.com/vid.mp4"></source>
</video>
Not working example
<video autoplay controls width="1024" height="714" class="videoWrapper">
<source src="vid.mp4"></source> <!-- also tried /vid.mp4 -->
</video>
Is the video file there? Yes it is, I can see it in build asset www
as well as project size is appropriate, which makes me think that there is sure a video inside the *.apk
file.