How can I include the video file into the APK(thought the "release run" would include it in APK for me)? I added the line(bold) below, but still not working.
Activity.LoadLayout("Layout1")
vv.Initialize("vv")
Activity.AddView(vv, 10dip, 10dip, 250dip, 250dip)
File.Copy(File.DirAssets, "skyclouds_converted.mp4", File.DirRootExternal, "skyclouds_converted.mp4")
vv.LoadVideo(File.DirRootExternal, "skyclouds_converted.mp4")
vv.Play
BTW, I got the error: java.io.FileNotFoundException with the code above.