Convertir System.Currenttimemillis en chaîne Kotlin

Long currentTime = System.currentTimeMillis();
SimpleDateFormat simpleDateFormat = new SimpleDateFormat("hh:mm:ss");
Date date = new Date(currentTime);
String time = simpleDateFormat.format(date);
Log.d(TAG, "onCreate: " + time);
XeN0N