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
The RxJava2 instrumentation uses MethodHandle, which was introduced in Java 8. This makes the instrumentation incompatible with Android applications that support Android API versions older than API 26 (Android 8.0).
Because RxJava is quite popular within the Android community, being able to use the instrumentation on Android is highly desirable.
The text was updated successfully, but these errors were encountered:
Resolves#7894
Replace `MethodHandle` with older `java.lang.reflect.Field`, which is
supported on older Java versions.
Also enables animal sniffer for the RxJava2 instrumentation to prevent
regression.
---------
Co-authored-by: opentelemetrybot <107717825+opentelemetrybot@users.noreply.github.com>
The RxJava2 instrumentation uses
MethodHandle
, which was introduced in Java 8. This makes the instrumentation incompatible with Android applications that support Android API versions older than API 26 (Android 8.0).Because RxJava is quite popular within the Android community, being able to use the instrumentation on Android is highly desirable.
The text was updated successfully, but these errors were encountered: