Android developer portal with tools, libraries, and apps

Show: All / Free / Paid / Demo

AndroidOperationQueue is tiny serial operation queue for Android Development.

May 7, 2016

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

Android-Retainable-Tasks is an easy to use mini-library for easy asynchronous background tasking with callback support to the UI. This library is based on the Android AsyncTask implementation but with support for retaining tasks and therefore surviving configuration changes (orientation).

Mar 3, 2016

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

Feb 11, 2016

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

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

Nov 2, 2015

An utility library for Android to run jobs delayed in the background. Depending on the Android version either the JobScheduler, GcmNetworkManager or AlarmManager is getting used.

Oct 26, 2015

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

Oct 17, 2015

Android lifecycle safety task with sugar code style.

Oct 3, 2015

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

Sep 24, 2015

This library extends AsyncTask api.

Features:

  • You can handle task's priority in task queue (from fifo queue to priority queue).
  • You can handle running thread's priority for task.
  • You can set a timer for task.
Sep 17, 2015

Asynchronous Workers and Worker Managers for Android.

Aug 12, 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

Goro performs asynchronous operations in a queue. You may ask Goro to perform some task with schedule method invocation.

Jul 16, 2015

Exponential backoff for Java (Java port of segmentio/backo).

Jul 15, 2015

Caesar is a tiny Java library that allows to create an asynchronous proxy-version of some synchronous bean. It means that you can still think in terms of your service/bean/object and use its methods instead of writing concurrency code.

Jun 9, 2015

An utility library for Android to run actions in background. It handles orientation changes and delegates results to the visible Activity.

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

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

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

Feb 27, 2015

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

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

JDeferred is a Java Deferred/Promise library similar to JQuery's Deferred Object.

Jan 21, 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

What is Android Promise

A library for modular asynchronous calls.

Dec 27, 2014

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

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

Asynchronous operations in Android are very hard to get right due to the Activity lifecycle. AsyncTasks don't handle any of it making them difficult to use. Loaders handle many things for you, but have a clunky api and fall down anytime you want to do anything more complex than loading data immediately when the Activity or Fragment is shown.

This library builds upon rxjava to handle all these things for you with an easy-to-use api.

Aug 26, 2014

android-multithread allows to add a listener to the AsyncTask. http://snowdream.github.io/android-multithread

Jul 20, 2014