I am working on an app which have a media server and this media server provide me the URL's of different video files and these videos are in dash format or .mpd format. I go through react-native-video and it have exo-player on android which already have a support of dash,
I have tested exo-player on andriod and it works but on the other hand it uses AVPlayer for IOS which don't have any support of dash.
I spent some time to find some solution on IOS side which could also support React-Native android and IOS but didn't find a proper way, Found two solutions but not works for both.
dash.js - https://github.com/Dash-Industry-Forum/dash.js/wiki
Google Shaka Player - https://github.com/google/shaka-playerdash.js have only support for web and shaka-player have some embeded solution available on IOS and which i have bridge and then i can use.
I am looking for some quick work around on react-native, Is there any player available which can play dash on both platforms or any other work around that can work for me.