I am trying to play audio & video files from SDcard in Android.
I know that corona sdk cannot access to sd card to play files so i
plan to get the directory of file using corona enteprise,now i want to know can i use native.newVideo to play the file from sd card like below code?
local video = native.newVideo( display.contentCenterX, display.contentCenterY, 320, 480 ); video:load("/storage/emulated/0/myapp/assets/video/myvideo.m4v"); video:play();
is answer is No, so what is the method to play video(not in fullscreen mode) using corona enteprise?