sms-translate/app/src/main/kotlin/com/simplemobiletools/smsmessenger/extensions/Date.kt
Naveen f721754785 Remove humanised datetime formatting
Year is not shown if it's same as the current year.
2022-10-14 00:37:03 +05:30

8 lines
213 B
Kotlin

package com.simplemobiletools.smsmessenger.extensions
import android.text.format.DateFormat
import java.util.*
fun Date.format(pattern: String): String {
return DateFormat.format(pattern, this).toString()
}