Android developer portal with tools, libraries, and apps

Show: All / Free / Paid / Demo

The easy asynchronous library for Kotlin. With extensions for Android, RxJava, JavaFX and much more.

Jun 1, 2016

This library helps with sequential tasks that will be run one after another and only when each task is finished. These tasks can either be UI or background.

Aug 19, 2016

Utility library of concurrent execution strategies for JVM and Android.

  • Inspired by async for JavaScript and Node.js.
  • Execute collection iterators and control flow strategies concurrently in the background.
  • Callbacks are notified when strategies are complete, cancelled, or error out.
  • Android extensions execute final callbacks on the UI thread.
Aug 25, 2016

Reactive Bolts-Android(powered by parse and facebook) allows to convert Task<T> to Observable<T>.

Oct 17, 2015

Chain of Command with background foreground options. Chains can be pre-constructed, and reused any number of times. Individual commands can be written as lambdas, or as classes.

Sep 10, 2017

Annotation-triggered method call by specified thread.

  • Eliminate runOnUiThread calls by using @OnUi on method.
  • Make background logic more clear by using @OnBackground on method.
Jan 9, 2016

Improved AsyncQueryHandler that supports Bulk Insert operation

Jun 16, 2017

Makes it easy to put your asynchronous operations behind Android's Loader.

Nov 2, 2015

Simple threading library using annotations for Android. This library makes it very easier to do any task on any thread. You can simply annotate a method to execute on any particular task and you are ready to go.

May 25, 2017

Android library to easily queue background and UI tasks.

So what does it exactly do?

If you are working on Android you probably have ended up using AsyncTasks to do background tasks and then have a response on the UI Thread. Well, author confesses: "I HATE ASYNCTASKS".

Aug 30, 2014

Are you sad to create every time the ThreadPool and MainThread to be exposed with Dagger to the application? If yes, you can use this library to reduce your work.

Mar 9, 2016

A small Android library to handle Async Task methods. Use Interface Segregation Principle to divide the actions into individual callbacks.

Mar 27, 2017

An Android task queue library. Support priority, timeout, multiple queue and auto-retry.

May 12, 2016

Immediately executable LooperScheduler. Supports RxJava 2.x and 1.x.

Feb 10, 2017

This library allows to use better multi-threading approach with observer-pattern.

May 31, 2016

LiteGo is a Java-based asynchronous concurrency library.

Jul 12, 2016

AWEX (Android Work EXecutor) is a thread pool to execute tasks that uses Promises to deliver results. Promises that can be cancelled, can be combined or even can process collections in parallel automatically.

May 7, 2016

A tiny Android library to create async background tasks. Highly inspired by NanoTasks, but with a funnier API.

Feb 27, 2015

AndroidOperationQueue is tiny serial operation queue for Android Development.

May 7, 2016

AndroidChannel is helper library for inter thread communication between main thread and worker thread. AndroidChannel uses HandlerThread for inter thread communication.

Sep 24, 2015

Satellite is a simple (for those who are familiar with RxJava) Android library, which allows to properly connect background tasks with visual parts of an application.

Aug 8, 2015

FromTo is a helper library that makes it simple to handle asynchronous actions with views for Android and Java/Kotlin.

Feb 11, 2016

Asynchronous Workers and Worker Managers for Android.

Aug 12, 2015

Futuroid is an Android library that allows running asynchronous tasks and attaching callbacks thanks to a convenient syntax. It offers an alternative to the Android AsyncTask class.

Features:

  • Future-based API (similar to Guava's ListenableFutures, Scala/Akka Futures, Javascript promises...)
  • Allows registering callbacks to be run on the Android UI/main thread
  • Provides a default ExecutorService (fixed thread pool with 5 threads) that can be replaced by a custom one
  • Each task can be run on the default ExecutorService or on a custom one
  • Allows task chaining (monad-style)
Dec 8, 2014

AsyncManager hopes to keep management of background threads as simple as possible, by keeping the creation and termination of background tasks to just one API call respectively. Callback, which will be processed on the UI thread, can be overridden to process the result returned from the background operation.

May 7, 2015

Small Android library for use the Interactor (use case) and Executor for running code on a ThreadPool Thread or UI Thread. Normally this library is used for implement the Clean Architecture.

Feb 25, 2015

android-asyncservice manages threading and caching transparently in your Android app.

It's an alternative to AsyncTasks, Loaders, or more advanced libs like RxJava, Robospice, Groundy, … but AsyncService focuses on keeping your code short and simple!

Jan 6, 2015

Android lifecycle safety task with sugar code style.

Oct 3, 2015

android-deferred-object is a chainable utility object that can register multiple callbacks into callback queues, invoke callback queues, and relay the success or failure state of any synchronous or asynchronous function.

Jan 21, 2015

Coordinator is a Java library that is used to coordinate various asynchronous actions. Usually we found cases that you need to check if other thread is completed to execute an action, coordinator solves this problem without using flags.

Mar 21, 2015