If you are using the `Date()` or `Calendar.getInstance()` class/method to get the ‘time’, then you might have somewhere encountered this above-mentioned Crash in Android 8.0/8.1

Solution:
Just replace your –

Date().time || Calendar.getInstance().timeInMillis

to

Instant.now().toEpochMilli() // Android 8.0 +


Leave a Reply

Your email address will not be published. Required fields are marked *