Open RTSP link in Media Player on Android using Phonegap

Please, I'm trying to open the RTSP link from Phonegap on Android using

window.open('rtsp://brekete.myurl.org:1935/radio/liveradio', '_system')

but I get the error "Application error: protocol is not supported. (rtsp: //myurl.com)

How do I get a phone link to open this Android link throwing this exception.

+3
source share
1 answer

I finally solved this problem by adding this tag to my config.xml

<access origin="*://myurl.org"/>
+3
source

All Articles