To calculate the age
Wed, Jul 13, 2016I want to calculate the age from birthday. I used the following libraries.
- https://github.com/JakeWharton/ThreeTenABP
- JSR-310 backport for Android
val age = Period.between(LocalDate.of(1990, 1, 1), LocalDate.now())
age.years // 25