Code Monkey home page Code Monkey logo

Comments (5)

AndroidDeveloperLB avatar AndroidDeveloperLB commented on August 15, 2024

I've found a workaround for this, which is to wrap the Lollipop class .

In the example above, I can make this:

    public interface JobInfoBuilder {
        JobInfo.Builder prepareLollipopJobBuilder(final Context context);
    }

    protected JobInfoBuilder prepareLollipopJobBuilder(final Context context) {
        return new JobInfoBuilder() {
            @Override
            public Builder prepareLollipopJobBuilder(final Context context) {
                return null;
            }
        };
    }

But, it's a silly solution.

from android-priority-jobqueue.

yigit avatar yigit commented on August 15, 2024

Weird. Can you try adding a custom logger (in JobConfiguration.Builder). It should be printing some kind of error somewhere.

from android-priority-jobqueue.

AndroidDeveloperLB avatar AndroidDeveloperLB commented on August 15, 2024

Well this is odd. I've copied the code I've written here, and it works just find at home. It must have been something else that causes this issue, but together with what I've found (because removing the Lollipop function will make it work).
I will need to investigate it further, at the office. Hope I will have time for this.

What would you want to put in the custom logger? Is this ok:

final JobManager jobManager=new JobManager(this,new Builder(this).customLogger(new CustomLogger()
{
@Override
public boolean isDebugEnabled()
  {
  return true;
  }

@Override
public void d(final String text,final Object... args)
  {
  Log.d("AppLog","customLogger:"+text+" "+args);
  }

@Override
public void e(final Throwable t,final String text,final Object... args)
  {
  Log.e("AppLog","customLogger:"+text+" "+t+" "+args);
  }

@Override
public void e(final String text,final Object... args)
  {
  Log.e("AppLog","customLogger:"+text+" "+args);
  }
}).build());

from android-priority-jobqueue.

AndroidDeveloperLB avatar AndroidDeveloperLB commented on August 15, 2024

ok, I think it's because of extending other class that extends from Job. Weird thing is that I remember it happened even without extending another class.
Here's the full project. Please have a look.
https://drive.google.com/file/d/0B-PZZGk2vPohcnJHMGl5OWxNRzA/

from android-priority-jobqueue.

AndroidDeveloperLB avatar AndroidDeveloperLB commented on August 15, 2024

Anyone ?

from android-priority-jobqueue.

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.