🚀 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.5.1
Last updated:
android {
buildFeatures {
compose true
}
composeOptions {
kotlinCompilerExtensionVersion = "1.5.3"
}
kotlinOptions {
jvmTarget = "1.8"
}
}
dependencies {
implementation "androidx.compose.animation:animation:1.5.1"
implementation "androidx.compose.foundation:foundation:1.5.1"
implementation "androidx.compose.material:material:1.5.1"
implementation "androidx.compose.material3:material3:1.1.2"
implementation "androidx.compose.runtime:runtime:1.5.1"
implementation "androidx.compose.ui:ui:1.5.1"
// glance
// For AppWidgets support
implementation "androidx.glance:glance-appwidget:1.0.0"
// For Wear-Tiles support
implementation "androidx.glance:glance-wear-tiles:1.2.0"
// wear
implementation "androidx.wear.compose:compose-foundation:1.2.0"
implementation "androidx.wear.compose:compose-material:1.2.0"
implementation "androidx.wear.compose:compose-navigation:1.2.0"
// NOTE: DO NOT INCLUDE androidx.compose.material:material
}