Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion AdaptiveJetStream/benchmark/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,6 @@ dependencies {
implementation(libs.androidx.benchmark.macro.junit4)
implementation(libs.androidx.rules)

implementation(platform(libs.androidx.compose.bom))
implementation(libs.androidx.compose.runtime)
}

Expand Down
15 changes: 8 additions & 7 deletions AdaptiveJetStream/gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ android-test-plugin = "8.13.0"
androidx-baselineprofile = "1.4.1"
benchmark-macro-junit4 = "1.4.1"
coil-compose = "2.7.0"
compose-bom = "2025.09.01"
compose = "1.11.0-SNAPSHOT"
compose-material3 = "1.5.0-alpha12"
concurrent-futures-ktx = "1.3.0"
tv-material = "1.0.1"
core-ktx = "1.17.0"
Expand All @@ -31,11 +32,11 @@ xr-material3 = "1.0.0-alpha11"
[libraries]
androidx-activity-compose = { module = "androidx.activity:activity-compose", version.ref = "activity-compose" }
androidx-benchmark-macro-junit4 = { module = "androidx.benchmark:benchmark-macro-junit4", version.ref = "benchmark-macro-junit4" }
androidx-compose-bom = { module = "androidx.compose:compose-bom", version.ref = "compose-bom" }
androidx-compose-material3 = { module = "androidx.compose.material3:material3" }
androidx-compose-runtime = { module = "androidx.compose.runtime:runtime" }
androidx-compose-ui-tooling = { module = "androidx.compose.ui:ui-tooling" }
androidx-compose-ui-tooling-preview = { module = "androidx.compose.ui:ui-tooling-preview" }
androidx-compose-foundation-layout = { group = "androidx.compose.foundation", name = "foundation-layout", version.ref = "compose" }
androidx-compose-material3 = { module = "androidx.compose.material3:material3", version.ref = "compose-material3" }
androidx-compose-runtime = { module = "androidx.compose.runtime:runtime", version.ref = "compose" }
androidx-compose-ui-tooling = { module = "androidx.compose.ui:ui-tooling", version.ref = "compose" }
androidx-compose-ui-tooling-preview = { module = "androidx.compose.ui:ui-tooling-preview", version.ref = "compose" }
androidx-concurrent-futures-ktx = { module = "androidx.concurrent:concurrent-futures-ktx", version.ref = "concurrent-futures-ktx" }
androidx-core-ktx = { module = "androidx.core:core-ktx", version.ref = "core-ktx" }
androidx-core-splashscreen = { module = "androidx.core:core-splashscreen", version.ref = "core-splashscreen" }
Expand Down Expand Up @@ -76,4 +77,4 @@ kotlin-serialization = { id = "org.jetbrains.kotlin.plugin.serialization", versi
compose-compiler = { id = "org.jetbrains.kotlin.plugin.compose", version.ref = "kotlin-android" }
hilt = { id = "com.google.dagger.hilt.android", version.ref = "hilt-android" }
ksp = { id = "com.google.devtools.ksp", version.ref = "ksp" }
kotlin-parcelize = { id = "kotlin-parcelize" }
kotlin-parcelize = { id = "kotlin-parcelize" }
4 changes: 3 additions & 1 deletion AdaptiveJetStream/jetstream/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -80,9 +80,11 @@ dependencies {
implementation(libs.androidx.lifecycle.runtime.ktx)
implementation(libs.androidx.lifecycle.runtime.compose)
implementation(libs.androidx.activity.compose)
implementation(platform(libs.androidx.compose.bom))
implementation(libs.androidx.compose.ui.tooling.preview)

// New layout APIs
implementation(libs.androidx.compose.foundation.layout)

// extra material icons
implementation(libs.androidx.material.icons.extended)

Expand Down
6 changes: 6 additions & 0 deletions AdaptiveJetStream/settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,19 @@ pluginManagement {
gradlePluginPortal()
google()
mavenCentral()
maven {
url = uri("https://androidx.dev/snapshots/builds/14741426/artifacts/repository")
}
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
maven {
url = uri("https://androidx.dev/snapshots/builds/14741426/artifacts/repository")
}
}
}
rootProject.name = "JetStream"
Expand Down