🚀 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.3
Last updated:
android {
buildFeatures {
compose true
}
composeOptions {
kotlinCompilerExtensionVersion = "1.4.7"
}
kotlinOptions {
jvmTarget = "1.8"
}
}
dependencies {
implementation "androidx.compose.animation:animation:1.4.3"
implementation "androidx.compose.foundation:foundation:1.4.3"
implementation "androidx.compose.material:material:1.4.3"
implementation "androidx.compose.material3:material3:1.1.0"
implementation "androidx.compose.runtime:runtime:1.4.3"
implementation "androidx.compose.ui:ui:1.4.3"
// 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
}