Sub PlayAnimation
Try
Dim SEPVD_load As SimpleExoPlayerView = SplashVideo
SEPVD_load.Visible = True
SEPVD_load.Player = SplashVideoPlayer
SplashVideoPlayer.Pause
SplashVideoPlayer.Prepare(SplashVideoPlayer.CreateFileSource(File.DirAssets, "Yedisaniye.mp4"))
SplashVideoPlayer.Play
Catch
Log(LastException)
End Try
End Sub
I'm using a splash screen and I want to play a video file at start-up. When I call this function I'm getting the " java.lang.Exception: Sub exoplayer_error signature does not match expected signature. " error message.