Home > Enterprise >  Joda lib in production
Joda lib in production

Time:06-17

Since Java 8 release, it is recommended to migrate to Java Date APIs. We still continue to support Android API level 23, is it advisable to continue using Joda in production?

CodePudding user response:

If what you have works then stick with it. Note that Android only supports a subset of the java.time API, and you have to do a bit of setup to get it working at all.

  • Related