by @alexstyl
🚀 JetpackComposeVersion.com
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.
The latest version is 1.6.7
Last updated:
android {
buildFeatures {
compose true
}
composeOptions {
kotlinCompilerExtensionVersion = "1.5.14"
}
kotlinOptions {
jvmTarget = "19"
}
}
dependencies {
implementation "androidx.compose.ui:ui:1.6.7"
implementation "androidx.compose.runtime:runtime:1.6.7"
implementation "androidx.compose.foundation:foundation:1.6.7"
implementation "androidx.compose.animation:animation:1.6.7"
implementation "androidx.compose.material:material:1.6.7"
implementation "androidx.compose.material3:material3:1.2.1"
// glance
// For AppWidgets support
implementation "androidx.glance:glance-appwidget:1.0.0"
// For Wear-Tiles support
implementation "androidx.glance:glance-wear-tiles:1.3.0"
// wear
implementation "androidx.wear.compose:compose-foundation:1.3.1"
implementation "androidx.wear.compose:compose-material:1.3.1"
implementation "androidx.wear.compose:compose-navigation:1.3.1"
// NOTE: DO NOT INCLUDE androidx.compose.material:material
}