Git Product home page Git Product logo

Comments (12)

yuxizhe avatar yuxizhe commented on August 17, 2024 7

same problem

W/WM-WorkSpec(20061): Backoff delay duration less than minimum value
I/flutter (20061): Download task is enqueued with id(b7bfe4de-b002-41bf-809f-46e1728cace3)
I/flutter (20061): b7bfe4de-b002-41bf-809f-46e1728cace3
I/flutter (20061): 0
I/zygote64(20061): Do partial code cache collection, code=29KB, data=26KB
I/zygote64(20061): After code cache collection, code=29KB, data=26KB
I/zygote64(20061): Increasing code cache capacity to 128KB


W/WM-WorkSpec(20061): Backoff delay duration less than minimum value
I/flutter (20061): Download task is enqueued with id(823f0124-fdbb-45f5-b5d5-90b2911b6f9f)
I/flutter (20061): 823f0124-fdbb-45f5-b5d5-90b2911b6f9f
I/flutter (20061): 0

there aren't any DownloadWorker show, it just stuck there.

from flutter_downloader.

AhmedNourJamalElDin avatar AhmedNourJamalElDin commented on August 17, 2024 4

Any solution?

from flutter_downloader.

hnvn avatar hnvn commented on August 17, 2024

It seems that your internet connection is in high latency

from flutter_downloader.

Gaket avatar Gaket commented on August 17, 2024

That happens because you use some thing that uses Android's WorkManager internally. Here is the code:

    /**
     * The minimum backoff time for work (in milliseconds) that has to be retried.
     */
    public static final long MIN_BACKOFF_MILLIS = 10 * 1000; // 10 seconds.

/**
     * @param backoffDelayDuration The backoff delay duration in milliseconds
     */
    public void setBackoffDelayDuration(long backoffDelayDuration) {
        if (backoffDelayDuration > MAX_BACKOFF_MILLIS) {
            Logger.get().warning(TAG, "Backoff delay duration exceeds maximum value");
            backoffDelayDuration = MAX_BACKOFF_MILLIS;
        }
        if (backoffDelayDuration < MIN_BACKOFF_MILLIS) {
            Logger.get().warning(TAG, "Backoff delay duration less than minimum value");
            backoffDelayDuration = MIN_BACKOFF_MILLIS;
        }
        this.backoffDelayDuration = backoffDelayDuration;
    }

Nothing critical, but you should know, that test will be restarted not earlier than in 10 seconds.

from flutter_downloader.

jlcool avatar jlcool commented on August 17, 2024

I have this problem, too.Do you know why?

from flutter_downloader.

jlcool avatar jlcool commented on August 17, 2024

It's like a simulator problem. It's OK to use the real machine.

from flutter_downloader.

jlcool avatar jlcool commented on August 17, 2024

Loop Loop Download Is Problem

from flutter_downloader.

yamsergey avatar yamsergey commented on August 17, 2024

The problem is in FlutterDownloaderPlugin.java at line 119:

.setBackoffCriteria(BackoffPolicy.EXPONENTIAL, 5, TimeUnit.SECONDS)

Meanwhile, the minimum value is 10 seconds, as stated by @Gaket

from flutter_downloader.

dotw avatar dotw commented on August 17, 2024

I have the same issue in andorid smulator, but it works in real device.

from flutter_downloader.

the-genius-man avatar the-genius-man commented on August 17, 2024

I am experiencing the same issue, my app closes itself whenever I try downloading anything.

from flutter_downloader.

nonetrix avatar nonetrix commented on August 17, 2024

Same I think it is due to the Android version I am using? I think enabling something in AndroidManifest.xml would fix a similar issue, but it's been so long I don't remember at all

some legacy option that's all I know.. Google needs to stop changing APIs so fast :/

W/WM-WorkSpec( 6378): Backoff delay duration less than minimum value
I/flutter ( 6378): Fatal: could not find callback
F/libc    ( 6378): FORTIFY: pthread_mutex_lock called on a destroyed mutex (0x74843d4680)
F/libc    ( 6378): Fatal signal 6 (SIGABRT), code -1 (SI_QUEUE) in tid 6464 (1.ui), pid 6378 (rix.renti.renti)
Lost connection to device.

from flutter_downloader.

shinewanna avatar shinewanna commented on August 17, 2024

Is there anyone fixed this issue?
It happen in my old device.

from flutter_downloader.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.