You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ADK currently hard-codes new ObjectMapper().registerModule(new Jdk8Module()) in places like here.
This is well intended ("it works out of the box"), but it's not extensible, and blocks one from using a custom ObjectMapper; e.g. in my project I would like (have) to use this one instead; notably for:
mapper.registerModule(newJavaTimeModule());
But this (the JavaTimeModule) is really just one case - the point is that users should be able to inject their own.