Search

You can now search through our archive !
Please specify a keyword

  • Issue #176

    Going Reactive, An Android architectural journey

    Matthias Käppler gives an overview of what our Android application architecture has evolved into, and how the use of RxJava for dealing with asynchronous streams of events has impacted its design, from data sources, to business logic and presentation.
  • Issue #174

    RxPermissions

    This library allows the usage of RxJava with the new Android M permission model.
  • Issue #174

    Why use Observable.create() and not just inherit from Observable?

    When starting to use RxJava you have to create Observables. They are at the very core of RxJava. But how to do so?
  • Issue #174

    Intro to Functional Reactive Programming

    In this talk from Droidcon NYC 2015, Juan Gomez explains why you should use FRP, and covers three main topics: reactive extensions, observers & descriptions, and intermediate topics around RxJava.
  • Issue #173

    RxJava for Android App Development

    In this FREE O’Reilly e-book, mobile software engineer Matt Dupree introduces you to RxJava basics and then uses a real-world scenario to demonstrate how this library makes quick work of tasks that can often become messy and inflexible.
  • Issue #173

    Async Android

    James McDonald explores Android’s threading abstractions and explains why RxJava can provide a more satisfying API for expressing asynchronous operations.
  • Issue #171

    Unit Testing RxJava Observables and Subscriptions

    RxJava is asynchronous by nature, so unit testing it might seem a daunting at first, especially if you use that asynchronous interaction to test stuff. Luckily, RxJava (and RxAndroid) come with a couple of tools that will make our life a lot easier.
  • Issue #170

    Party tricks with RxJava, RxAndroid & Retrolambda

    A quick intro to RxJava, RxAndroid with lots of code snippets.
  • Issue #170

    RxJava with AIDL Services

    Donn Felker shows how using RxJava with AIDL Services will help us clean up the interface to consume the AIDL service – making it easier to work with.
  • Issue #168

    Assertj-rx

    This library extends AssertJ core with the aim of providing elegant assertions to test RxJava Observables.
  • Issue #168

    RxJava: convert a listener into an Observable

    In Java it’s common to work with listeners. And if you work with RxJava, you will prefer to use an Observable instead of listeners. But what if you have to deal with a library and you cannot change the source code?
  • Issue #167

    Android Engineer - Help us build an SDK

    We are building PSPDFKit for Android using RxJava & C++ 14. It's a challenging project that is used in many apps and there's plenty of work to be done. We have a talented team, who enjoy the benefits of working in a remote environment. If you're up for a challenge, send us your resume.
  • Issue #167

    Senior Android Developer

    Constant Contact, Inc. is seeking a senior Android Developer who will help us build the next level of SMB Android apps. You will be working closely with our team of Android and iOS mobile developers, building some of the core technologies that we integrate in the app using RxJava, Dagger and more.
  • Issue #166

    Android Engineer - Help us build an SDK

    We are building PSPDFKit for Android using RxJava & C++ 14. It's a challenging project that is used in many apps and there's plenty of work to be done. We have a talented team, who enjoy the benefits of working in a remote environment. If you're up for a challenge, send us your resume.
  • Issue #166

    ReactiveNetwork

    ReactiveNetwork is an Android library listening network connection state and change of the WiFi signal strength with RxJava Observables
  • Issue #165

    Android Engineer - Help us build an SDK

    We are building PSPDFKit for Android using RxJava & C++ 14. It's a challenging project that is used in many apps and there's plenty of work to be done. We have a talented team, who enjoy the benefits of working in a remote environment. If you're up for a challenge, send us your resume.
  • Issue #165

    A Note About the Warmth of the Share and Replay Operators

    A common question most android developers have when using RxJava is: how do I cache or persist the work done by my observables over a configuration change?
  • Issue #165

    RxJava Code Review Part 1

    Artem Zinnatulin has decided to make full code review of RxJava sources, understand it better, create issues and PRs if he's found something suspicious (especially with respect to Android)
  • Issue #165

    RxJava-Android-Samples

    This is a work-in-progress repository with real-world useful examples of using RxJava with Android.
  • Issue #164

    Android Engineer - Help us build an SDK

    We are building PSPDFKit for Android using RxJava & C++ 14. It's a challenging project that is used in many apps and there's plenty of work to be done. We have a talented team, who enjoy the benefits of working in a remote environment. If you're up for a challenge, send us your resume.
  • Issue #164

    Deferring Observable code until subscription in RxJava

    Dan Lew writes about using RxJava's defer() as a tool for ensuring Observable code runs when subscribed (rather than when created).
  • Issue #164

    Unit Testing RxJava Observables

    RxJava is a great library, but it’s not easy to get started. The article outlines different approaches to unit testing Observables.
  • Issue #164

    Go With the Flow: A Reactive State of Mind

    Colin Lee provide a quick introduction to the concepts of Java 8 streams, then dives into Netflix's library providing reactive extensions to Java, RxJava.
  • Issue #161

    Android reactive programming with RxJava

    Ivan Morgillo's talk from droidconDE 2015 is a practical journey from basic Reactive Programming and Observer Pattern concepts to the main feature of RxJava, with practical code examples and a real-world app.
  • Issue #160

    Learning RxJava (for Android) by example

    A presentation aimed at beginners who have heard about RxJava and want to see what all the fuss is about. Kaushik Gopal (co-host of Fragmented podcast) provides primers on RxJava and RxAndroid, then looks at implementing real-world use cases in Android with RxJava.