i have an application. I want to get phone's time as long value. Although the phone's timezone is UTC+3, UTC 0 is displayed in all the following operations. I think app locale is wrong.
Phone Time is : 10.46
TimeZone.getDefault().id // return UTC
Date() // Wed Sep 14 07:46:57 UTC 2022
LocalDateTime().now() // 2022-09-14T07:46:22.849
Timestamp(System.currentTimeMillis()) // 2022-09-14 07:50:18.153
How can I get right timezone?