🚀 JetpackComposeVersion.com
A page to quickly check what the latest version of Jetpack Compose is and its dependencies.
Versions displayed in this page are the latest publicly announced versions by Google.
by @alexstyl
The latest version is 1.4.0
Last updated:
android {
buildFeatures {
compose true
}
composeOptions {
kotlinCompilerExtensionVersion = "1.4.4"
}
kotlinOptions {
jvmTarget = "1.8"
}
}
dependencies {
implementation "androidx.compose.animation:animation:1.4.0"
implementation "androidx.compose.foundation:foundation:1.4.0"
implementation "androidx.compose.material:material:1.4.0"
implementation "androidx.compose.material:material3:1.0.1"
implementation "androidx.compose.runtime:runtime:1.4.0"
implementation "androidx.compose.ui:ui:1.4.0"
// For Wear-Tiles support
implementation "androidx.glance:glance-wear-tiles:1.1.0"
// wear
implementation "androidx.wear.compose:compose-foundation:1.1.2"
implementation "androidx.wear.compose:compose-material:1.1.2"
implementation "androidx.wear.compose:compose-navigation:1.1.2"
// NOTE: DO NOT INCLUDE androidx.compose.material:material
}