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
Looks like Jackson 2.13 is otherwise compatible with Android SDK 24 except for one use of Class.getTypeName() (added in JDK 8) which is only available on ASDK 26. This should be fixed since usage seems accidental and can just be replaced with Class.getName().
The text was updated successfully, but these errors were encountered:
(findings from #3658)
Looks like Jackson 2.13 is otherwise compatible with Android SDK 24 except for one use of
Class.getTypeName()
(added in JDK 8) which is only available on ASDK 26. This should be fixed since usage seems accidental and can just be replaced withClass.getName()
.The text was updated successfully, but these errors were encountered: