After updating from jackson 2.13.1 to jackson 2.13.2 I noticed my app no longer worked on Android API 21. After digging into the code I found the issue at line 187 of `AnnotatedMethodCollector.java`: - version 2.13.1 used `m.getParameterTypes().length` - version 2.13.2 uses `m.getParameterCount()` However, the [getParameterCount()](https://developer.android.com/reference/java/lang/reflect/Method#getParameterCount()) method requires API 26 on Android. For now, I'm sticking to version 2.13.1 😄 ----- **EDIT**: the fix included the official `2.13.3` release