Kotlin just let me select "seekTo (int msec)" but I need to use "seekTo (long msec, int mode)"
Im using API 27 and I have all this imported:
import androidx.*
import androidx.appcompat.app.AppCompatActivity
import android.os.Bundle
import android.widget.*
import kotlinx.android.synthetic.main.activity_main.*
import kotlin.*
import kotlin.text.*
import android.app.Activity
import android.content.Intent
import android.provider.MediaStore
import android.text.Editable
import androidx.core.*
import android.media.*
import android.media.MediaPlayer.OnSeekCompleteListener
import android.media.MediaPlayer.*
import android.support.*
VIDEO!!.seekTo(10000)
seekTo (int msec) //Just let me select this
seekTo (long msec, int mode) //this so not apear
And still not working, don't let me select it. any suggestion? Thanks