android-priority-jobqueue
android-priority-jobqueue copied to clipboard
A Job Queue specifically written for Android to easily schedule jobs (tasks) that run in the background, improving UX and application stability.
A strange problem started only recently. One of the jobs in the app is geting added but not running. `public class TestJob extends Job { private static final String TAG...
I was looking to implement a 'wifi only upload' option for our app, and came across #330 . However, I noticed that going from a `metered` to `unmetered` did not...
I've come across an issue where jobs aren't always run after a device is restarted due to a forced shutdown. I've not been able to reproduce the issue if I...
`Fatal Exception: android.database.sqlite.SQLiteDatabaseLockedException: database is locked (code 5) at android.database.sqlite.SQLiteConnection.nativeExecuteForLastInsertedRowId(SQLiteConnection.java) at android.database.sqlite.SQLiteConnection.executeForLastInsertedRowId(SQLiteConnection.java:798) at android.database.sqlite.SQLiteSession.executeForLastInsertedRowId(SQLiteSession.java:788) at android.database.sqlite.SQLiteStatement.executeInsert(SQLiteStatement.java:86) at com.birbit.android.jobqueue.persistentQueue.sqlite.SqliteJobQueue.insertOrReplace(SqliteJobQueue.java:191) at com.birbit.android.jobqueue.cachedQueue.CachedJobQueue.insertOrReplace(CachedJobQueue.java:39) at com.birbit.android.jobqueue.JobManagerThread.reAddJob(JobManagerThread.java:550) at com.birbit.android.jobqueue.JobManagerThread.insertOrReplace(JobManagerThread.java:544) at com.birbit.android.jobqueue.JobManagerThread.handleRunJobResult(JobManagerThread.java:492) at com.birbit.android.jobqueue.JobManagerThread.access$300(JobManagerThread.java:35) at com.birbit.android.jobqueue.JobManagerThread$1.handleMessage(JobManagerThread.java:237)...
Getting a crash report from our Firebase, any ideas? Exception java.lang.NullPointerException: Attempt to invoke interface method 'boolean android.os.IPowerManager.isDeviceIdleMode()' on a null object reference ``` android.os.PowerManager.isDeviceIdleMode (PowerManager.java:995) com.birbit.android.jobqueue.network.NetworkUtilImpl.isDozing () com.birbit.android.jobqueue.network.NetworkUtilImpl.getNetworkStatus ()...
My project already uses appcompat support library v7:27.0.2. However, this library uses on v21. Requirement of my app will not allow me downgrade to v21. How can I use your...
Hi, Since Google has introduced and asked developers to use the FCM(https://firebase.google.com), and therefore, how this library could support to FCM rather than still depend on GcmJobSchedulerService and GoogleApiAvailability. Thank...
It seems I was not able to invoke platform scheduler when the app is not in memory. Scenario : Execute a job only when device is under network coverage Configuration...
Hi all I configured jobmanager with 3 consumers and 1 loadFactor. I have 3 types sync jobs and i want all three types of jobs progress at same time. In...