Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ object Base {
// Raise by 2 to account for wear version code.
const val versionCode = 71
const val versionName = "1.46"
const val minSDK = 21
const val minSDK = 24
const val currentSDK = 34

const val versionCodeWear = versionCode + 1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -242,6 +242,6 @@ class CsvRepoImpl @Inject constructor(
companion object {
private const val CSV_HEADER = "activity name,time started,time ended,comment,categories,record tags,duration,duration minutes\n"

private val dateTimeFormat = SimpleDateFormat("yyyy-MM-dd HH:mm:ss", Locale.US)
private val dateTimeFormat = SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ssXXX", Locale.US)
}
}