Skip to content
This repository has been archived by the owner on Apr 8, 2020. It is now read-only.

Commit

Permalink
Include WorkManager in the library comparison table (#274)
Browse files Browse the repository at this point in the history
  • Loading branch information
jhamberg authored and samtstern committed Dec 5, 2018
1 parent 9fed99d commit b975ba7
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions README.md
Expand Up @@ -65,16 +65,18 @@ Play services installed.

### Comparison to other libraries

Library | Minimum API | Requires Google Play | Service API<sup>[1](#fn1)</sup> | Custom retry strategies
-------------------------- | ----------- | ---------------------- | ------------------------------- | -----------------------
Framework [JobScheduler][] | 21 | No | JobScheduler | Yes
Firebase JobDispatcher | 14 | Yes | JobScheduler | Yes
[evernote/android-job][] | 14 | No<sup>[2](#fn2)</sup> | Custom | Yes
Library | Minimum API | Requires Google Play | Service API<sup>[1](#fn1)</sup> | Custom retry strategies
------------------------------------------- | ----------- | ---------------------- | ------------------------------- | -----------------------
Framework [JobScheduler][] | 21 | No | JobScheduler | Yes
Firebase JobDispatcher | 14 | Yes | JobScheduler | Yes
[evernote/android-job][] | 14 | No<sup>[2](#fn2)</sup> | Custom | Yes
Android [WorkManager][]<sup>[3](#fn3)</sup> | 14 | No<sup>[2](#fn2)</sup> | Custom | Yes

<sup><a name="fn1">1</a></sup> Refers to the methods that need to be implemented in the
Service subclass.<br>
<sup><a name="fn2">2</a></sup> Uses AlarmManager to support API levels <= 21 if Google
<sup><a name="fn2">2</a></sup> Uses AlarmManager or JobScheduler to support API levels <= 21 if Google
Play services is unavailable.<br>
<sup><a name="fn3">3</a></sup> Currently in alpha phase, soon to graduate to beta.</br>

## Getting started

Expand Down

0 comments on commit b975ba7

Please sign in to comment.