mirror of
https://github.com/meshtastic/Meshtastic-Android.git
synced 2026-04-20 22:23:37 +00:00
14 lines
No EOL
335 B
Kotlin
14 lines
No EOL
335 B
Kotlin
package com.geeksville.mesh.android
|
|
|
|
import java.util.*
|
|
|
|
/**
|
|
* Created by kevinh on 1/13/16.
|
|
*/
|
|
object DateUtils {
|
|
fun dateUTC(year: Int, month: Int, day: Int): Date {
|
|
val cal = GregorianCalendar(TimeZone.getTimeZone("GMT"))
|
|
cal.set(year, month, day, 0, 0, 0);
|
|
return Date(cal.getTime().getTime())
|
|
}
|
|
} |