Android Question Fatal Error: Unable to find method metafactory

rosippc64a

Active Member
Licensed User
Longtime User
Hi All,
I have an interesting error found in my test app in #if JAVA section, that I have never seen before. The error:
The code fragment:
code:
    private void startTimer(int timeout) {
    stopTimer();
    BA.Log("startTimer: creating");
    timerDispose = Observable.zip(
                    Observable.range(0, timeout + 1),
                    Observable.interval(0, 1, TimeUnit.SECONDS),
                    (val, time) -> timeout - val)
            .observeOn(Schedulers.io())
            .doOnNext(val -> log.info("timer is {}", val))
            .doOnNext(transactionTimeout::onNext)
            .subscribe(transactionTimeout::onNext,
                    this::onTimeoutFailed,
                    this::onEcrTimeout);
    }
Has anyone encountered error like this?
 

walterf25

Expert
Licensed User
Longtime User
You might be missing some dependencies.
 
Upvote 0
Cookies are required to use this site. You must accept them to continue using the site. Learn more…