Kodi Community Forum

Full Version: Run Kodi Intent and resume file
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello,

I am doing an android recomendation mod for android tv.
I show video to resume, but when I run Kodi app, the video is read from the begining of the video.

How can i run android and start at the bookmark?

Actually, I run the kodi app like this :
Code:
Intent detailsIntent = new Intent(this, Splash.class);
detailsIntent.setDataAndType(Uri.parse(movie.getPath()), "video/*");
detailsIntent.setAction("android.intent.action.VIEW");

Thanks.