playing video files in Android

Hi,
I am trying to play video files stored in the Backendless Files directory with a video playing app that is already installed on the device. It seems like the file is loaded but is not being played.
The code I use is the following:

String videoUrl = "http://........";
Uri myUri = Uri.parse(videoUrl);
Intent intent = new Intent(Intent.ACTION_VIEW, myUri);
intent.setDataAndType(myUri,"video/*");
startActivity(intent);

Thanks for the help!

Hi, Victor.
Could you try to use samples from code generation (Code Generation tab ->SDK type -> viewer sample)?

Regards,
Kate.