1*XTEb_qIXJmWJcdj6k9-Wcw.jpeg

Introducing MvRx

Today, we are ready to share our Android architecture: MvRx. MvRx (pronounced “mavericks”) was born out of the recognition that we were solving the same problems over and over again, distracting us from focusing on shipping products. On Android, there are countless little things that engineers have to write or consider to make their app high-quality. Some of those are:

MvRx makes all of those and much more comically simple. When we set out, our only goal was to make it easier, faster, and more fun to ship a high quality product. Originally, open sourcing this framework wasn’t our goal. However, once it started to take shape, we knew that we had to do it. Not only do we want to share it with you but we also want it to be available for our own projects outside of Airbnb because it scales from hobby projects to an app with 70 engineers and nearly a million lines of code with ease.

MvRx in Action

MvRx builds on top of Google’s architecture components, RxJava, Epoxy. It is Kotlin-first and Kotlin-only. Designing around the Kotlin language enabled us to build an API that is far cleaner than we ever could have achieved with Java.

This is what it looks like:

Untitled Database

In this simple Fragment, with just 18 lines of code, we have a ViewModel that is scoped to the Fragment but will be retained across configuration changes, as well as a default layout and a testable state for our screen. When the state changes, the screen will be automatically updated but only the specific parts that actually changed will be dispatched to the RecyclerView (thanks to Epoxy). Plus, all of the code you see runs on a background thread because MvRx handles threading seamlessly out of the box.

MvRx at Airbnb

In just a matter of months, MvRx has gone from a pilot to the standard way we write nearly 100% of new screens and people are loving it. In the most recent survey, 93% of the engineers surveyed (n=14) gave it an 8/10 or higher.

In addition, its adoption has been astounding. Growth was steady through the pilot but when we opened it up for any team to use in July, adoption took off on its own.

In just a few months, we have built over 110 screens in MvRx and it has quickly been adopted as the go-to way to write any feature from a simple static feature to some of the most complex features in our app.

Getting Started

We’re excited to be sharing MvRx with the world. If you want to learn more, head over to our GitHub Wiki to learn more!

Thanks,