Play a Video Stream on android device

Hello.
I wont to make video stream like this:
https://docs.unrealengine.com/en-US/WorkingWithMedia/MediaFramework/HowTo/StreamMediaSource/index.html
on my android device and all work with url like: https://docs.unrealengine.com/Attachments/WorkingWithMedia/MediaFramework/HowTo/StreamMediaSource/Infiltrator%20Demo.mp4

But if I try to use url like https://127.0.0.1/video.mp4 (this url don’t work, only for example) – I have url to my server → all work in editor, but don’t work in android device

can someone help me with this?
does anyone know how it works?

Mark this as resolved. Maybe someone can help.
I found the answer to this problem. The problem was that my server was issuing a url like http. And android 10 only accepts https.
My solution to the problem is to register the manifest in the Project Settings:
android:usesCleartextTraffic=“true”

1 Like