Android developer portal with tools, libraries, and apps

Show: All / Free / Paid / Demo

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

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

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

LiteGo is a Java-based asynchronous concurrency library.

Jul 12, 2016

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

Feb 27, 2015

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

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

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

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

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

Feb 11, 2016

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

Easy async loading for Android's ListView/GridView

Jul 5, 2014

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

Extremely light way to execute code in the background on Android. Alternative to AsyncTask.

Feb 26, 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

KayThread is a Java library that allows you to create and control threads easily.

Jan 30, 2024

Esito ambition is to be your return type for suspending functions.

Jan 2, 2022

A Kotlin work manager library for Android with progress notifications.

Jan 20, 2021

A simple Android project using asynchronous programming with Kotlin Coroutines.

Jan 8, 2019

This lib implements the most common CoroutineScopes used in Android apps.

Sep 16, 2018

A RxJava priority scheduler library for Android and Java applications.

Jul 21, 2018

ActorLite is a Library that implements Actor Model similar to Akka, but for Android, it is a light weight library that works very fine for single-process applications and with the minimum effort possible, need more advanced Actor Model Library you can check my "AndroidActorModel" library ... you wont need to hold reference to your Objects to be able to call there methods, just send them a message and they will receive it if they like.

Jan 6, 2018

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

Transform any object into an async object (can be useful for VIPER).

May 2, 2017