Skip to content

Tag: android

How to get perfect UTC Time in java/android?

I am trying to get UTC time in my application but unfortunately every time I am getting my current emulator Date and Time Instead of UTC. Tried, Calendar cal = Calendar.getInstance(TimeZone.getTimeZone(“UTC”)); ZonedDateTime utcTime = ZonedDateTime.now(ZoneOffset.UTC); DateTime now = DateTime.now(…

Kotlin to Java migration

I am unable to translate(from Kotlin to Java) or understand this statement service.connectionListener = { addConnection(it) } which is found in the inner class of the following file: I was unable to translate the above statement (commented out): Answer This code in Kotlin: Corresponds to this code in Java: It…

‘canAuthenticate()’ is deprecated in android

What should I use instead of biometricManager.canAuthenticate() is deprecated. Doc says This method is deprecated. Use canAuthenticate(int) instead. How to use canAuthenticate(int) like the above manner. Answer The direct replacement for your code would look something like: According to the javadoc, the possi…