Is Android Compose Production Ready?

UPDATE: In August 2021, a stable 1.0.0 release of Jetpack Compose shipped. By most conventional measures, Compose is production ready. The original answer is shown below in its original form.


Is Android Compose Production Ready?

I am going to assume that by "Android Compose", you mean "Jetpack Compose".

In 2019, Google has very consistently referred to Jetpack Compose as being in a preview state and not suitable for production use.

For example, on the main Jetpack Compose page, we have:

Note: Jetpack Compose is currently in Developer Preview. The API surface is not yet finalized, and changes are planned and expected.

Jetpack Compose Warning

On the main Jetpack Compose Tutorial page, we have:

Note: Jetpack Compose is currently in Developer Preview. The API surface is not yet finalized, and should not be used in production apps.

Another Jetpack Compose Warning

In the Android Developer Summit keynote blog post, we have:

Today we are releasing the Jetpack Compose Developer Preview. All you need to do is download the latest Preview build of Android Studio. Compose is being developed completely in the open, in AOSP. The continuous feedback we receive has led to many API improvements and we want to thank you for providing feedback in our developer studies and the Kotlinlang Slack group. As we enter developer preview, we need even more feedback as we work towards bringing Jetpack Compose to beta next year and ready for use in production apps.

(emphasis added)

Still Another Jetpack Compose Warning

So, check back in a year, and we will see if Jetpack Compose has advanced far enough that Google says you should use it in production apps.


Jetpack Compose is currently in Developer Preview Mode. Hence it's not Production ready for right now. But they have provided the developer version to play around it.

Here is the implementation, where you can play with it.

val composeVersion = "0.1.0-dev02"
    implementation("androidx.ui:ui-framework:$composeVersion")
    implementation("androidx.ui:ui-layout:$composeVersion")
    implementation("androidx.ui:ui-material:$composeVersion")
    implementation("androidx.ui:ui-tooling:$composeVersion")

Also, you can check the documentation Here