RxAndroid icon indicating copy to clipboard operation
RxAndroid copied to clipboard

java.lang.NoSuchMethodError

Open 13man opened this issue 3 years ago • 20 comments

OkHttp Dispatcher(48197)

java.lang.NoSuchMethodError

No static method disposed()Lio/reactivex/rxjava3/disposables/Disposable; in class Lio/reactivex/rxjava3/disposables/Disposable; or its super classes (declaration of 'io.reactivex.rxjava3.disposables.Disposable' appears in base.apk!classes3.dex)

1 io.reactivex.rxjava3.android.schedulers.HandlerScheduler$HandlerWorker.schedule(HandlerScheduler.java:91)

2 io.reactivex.rxjava3.core.Scheduler$Worker.schedule(Scheduler.java:402) 3 io.reactivex.rxjava3.internal.operators.observable.ObservableObserveOn$ObserveOnObserver.schedule(ObservableObserveOn.java:161) 4 io.reactivex.rxjava3.internal.operators.observable.ObservableObserveOn$ObserveOnObserver.onComplete(ObservableObserveOn.java:139) 5 io.reactivex.rxjava3.internal.operators.observable.ObservableSubscribeOn$SubscribeOnObserver.onComplete(ObservableSubscribeOn.java:68) 6 retrofit2.adapter.rxjava3.BodyObservable$BodyObserver.onComplete(BodyObservable.java:70) 7 retrofit2.adapter.rxjava3.CallEnqueueObservable$CallCallback.onResponse(CallEnqueueObservable.java:66) 8 retrofit2.OkHttpCall$1.onResponse(OkHttpCall.java:161) 9 okhttp3.RealCall$AsyncCall.run(RealCall.kt:138) 10 java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1167) 11 java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:641) 12 java.lang.Thread.run(Thread.java:929)

What is the problem and how to solve it ?

13man avatar Mar 14 '21 11:03 13man

我也是同样的问题

huihui4045 avatar Apr 22 '21 10:04 huihui4045

I have the same problem

huihui4045 avatar Apr 22 '21 10:04 huihui4045

Caused by: java.lang.NoSuchMethodError: No static method metafactory(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite; in class Ljava/lang/invoke/LambdaMetafactory; or its super classes (declaration of 'java.lang.invoke.LambdaMetafactory' appears in /apex/com.android.art/javalib/core-oj.jar) at io.reactivex.rxjava3.android.schedulers.AndroidSchedulers.(AndroidSchedulers.java:33) at io.reactivex.rxjava3.android.schedulers.AndroidSchedulers.from(AndroidSchedulers.java:55)

huihui4045 avatar Apr 22 '21 10:04 huihui4045

That is not the same problem. You need to enable Java 8 support: https://developer.android.com/studio/write/java8-support#supported_features

JakeWharton avatar Apr 22 '21 13:04 JakeWharton

问题解决了吗

blankyn avatar Oct 09 '21 06:10 blankyn

问题解决了吗

android {
    ...
    // Configure only for each module that uses Java 8
    // language features (either in its source code or
    // through dependencies).
    compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_8
        targetCompatibility JavaVersion.VERSION_1_8
    }
    // For Kotlin projects
    kotlinOptions {
        jvmTarget = "1.8"
    }
}

Goooler avatar Oct 09 '21 07:10 Goooler

问题解决了吗

android {
    ...
    // Configure only for each module that uses Java 8
    // language features (either in its source code or
    // through dependencies).
    compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_8
        targetCompatibility JavaVersion.VERSION_1_8
    }
    // For Kotlin projects
    kotlinOptions {
        jvmTarget = "1.8"
    }
}

我设置了,但是无效,依然还会报错

blankyn avatar Oct 13 '21 04:10 blankyn

@Blankyn 升级 AGP 看看,可能太旧了

Goooler avatar Oct 13 '21 04:10 Goooler

@Blankyn 升级 AGP 看看,可能太旧了

我用的3.6.3版本

blankyn avatar Oct 13 '21 05:10 blankyn

@Blankyn 升级 AGP 看看,可能太旧了

经过测试,as运行没这个问题,但是打包apk就有这个问题。rxandroid 用2.1.1的也可以,唯独升级后有问题

blankyn avatar Oct 13 '21 06:10 blankyn

此处要改成: .addCallAdapterFactory(RxJava3CallAdapterFactory.createSynchronous())

------------------ 原始邮件 ------------------ 发件人: "ReactiveX/RxAndroid" @.>; 发送时间: 2021年10月13日(星期三) 下午2:06 @.>; 抄送: "自由 @.@.>; 主题: Re: [ReactiveX/RxAndroid] java.lang.NoSuchMethodError (#578)

@Blankyn 升级 AGP 看看,可能太旧了

经过测试,as运行没这个问题,但是打包apk就有这个问题。rxandroid 用2.1.1的也可以,唯独升级后有问题

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub, or unsubscribe. Triage notifications on the go with GitHub Mobile for iOS or Android.

13man avatar Oct 13 '21 06:10 13man

此处要改成: .addCallAdapterFactory(RxJava3CallAdapterFactory.createSynchronous()) ------------------ 原始邮件 ------------------ 发件人: "ReactiveX/RxAndroid" @.>; 发送时间: 2021年10月13日(星期三) 下午2:06 @.>; 抄送: "自由 @.@.>; 主题: Re: [ReactiveX/RxAndroid] java.lang.NoSuchMethodError (#578) @Blankyn 升级 AGP 看看,可能太旧了 经过测试,as运行没这个问题,但是打包apk就有这个问题。rxandroid 用2.1.1的也可以,唯独升级后有问题 — You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub, or unsubscribe. Triage notifications on the go with GitHub Mobile for iOS or Android.

没用的,安卓部分机器有问题,我测试过,目前发现两款机器

blankyn avatar Nov 05 '21 02:11 blankyn

确认下依赖 是否都是3系列 com.squareup.retrofit2:adapter-rxjava3:2.9.0io.reactivex.rxjava3:rxandroid:3.0.0io.reactivex.rxjava3:rxjava:3.0.0.addCallAdapterFactory(RxJava3CallAdapterFactory.createSynchronous())

------------------ 原始邮件 ------------------ 发件人: "ReactiveX/RxAndroid" @.>; 发送时间: 2021年11月5日(星期五) 上午10:18 @.>; 抄送: "自由 @.@.>; 主题: Re: [ReactiveX/RxAndroid] java.lang.NoSuchMethodError (#578)

此处要改成: .addCallAdapterFactory(RxJava3CallAdapterFactory.createSynchronous()) … ------------------ 原始邮件 ------------------ 发件人: "ReactiveX/RxAndroid" @.>; 发送时间: 2021年10月13日(星期三) 下午2:06 @.>; 抄送: "自由 @.@.>; 主题: Re: [ReactiveX/RxAndroid] java.lang.NoSuchMethodError (#578) @Blankyn 升级 AGP 看看,可能太旧了 经过测试,as运行没这个问题,但是打包apk就有这个问题。rxandroid 用2.1.1的也可以,唯独升级后有问题 — You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub, or unsubscribe. Triage notifications on the go with GitHub Mobile for iOS or Android.

没用的,安卓部分机器有问题,我测试过,目前发现两款机器

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub, or unsubscribe. Triage notifications on the go with GitHub Mobile for iOS or Android.

13man avatar Nov 05 '21 02:11 13man

I had this problem too, and finally I found the problem.

The scenario where the problem occurs is:

  • I have a library project and an app project, and I package the library project as an aar, and then introduce it into the app project. The library project uses the static method (disposed) of the Disposable interface of rxjava3.
  • The problem only occurs when aar is introduced and the app project is packaged as an apk to manually install and run to the device. If you directly depend on the library project, or run it directly with AndroidStudio (whether it is aar dependency or project dependency), there is no problem.

I found two ways to solve or circumvent this problem:

  1. Change the way to import aar。

from:

    implementation(name:"libs",ext: "aar")

to:

    implementation(files("libs/libs.aar"))
  1. Add a property to gradle.properties
android.enableDexingArtifactTransform.desugaring=false

The cause of the problem lies in the process of desugaring. When you look at the Dex file in the apk, you can find that the Disposable interface of rxjava3 will be divided into two parts, one of which is Disposable, which contains the declarations of two interface methods, and the other is Disposable$-CC , which contains all static methods. Our code calls static methods through Disposable, so the correct situation should be that when the class in our aar is converted to dex, the call to the static method needs to be replaced with Disposable$-CC.xxxx(), but when we aar is imported with (name,ext) , AGP will not do this for us.

More specific reasons require us to study the behavior of AGP or D8

hanlyjiang avatar Mar 09 '22 15:03 hanlyjiang

这是来自QQ邮箱的假期自动回复邮件。您好,我最近正在休假中,无法亲自回复您的邮件。我将在假期结束后,尽快给您回复。

hsy719007146 avatar Apr 27 '22 09:04 hsy719007146

这是来自QQ邮箱的假期自动回复邮件。您好,我最近正在休假中,无法亲自回复您的邮件。我将在假期结束后,尽快给您回复。

hsy719007146 avatar Oct 11 '22 07:10 hsy719007146

这是来自QQ邮箱的假期自动回复邮件。您好,我最近正在休假中,无法亲自回复您的邮件。我将在假期结束后,尽快给您回复。

hsy719007146 avatar Dec 22 '22 18:12 hsy719007146