Fixed
Status Update
Comments
au...@google.com <au...@google.com> #2
Looks like AndroidX tooling didn't catch this because it happened prior to migrating the development workflow to AndroidX. Should be avoidable in the future since we have API files checked in for 1.1.0
, but for now this will need to be fixed and we'll want to do whatever we can to mitigate the breakage in the released artifact.
pr...@google.com <pr...@google.com>
au...@google.com <au...@google.com> #3
I guess you don't need extra reports but also fails for Measurer
androidx.constraintlayout.compose.Measurer: method 'void <init>()' not found
java.lang.NoSuchMethodError: androidx.constraintlayout.compose.Measurer: method 'void <init>()' not found
at com.google.android.horologist.media.ui.screens.player.PlayerScreenKt.PlayerScreen(PlayerScreen.kt:273)
this is a Composable from a library
@Composable
public fun PlayerScreen(
mediaDisplay: @Composable () -> Unit,
controlButtons: @Composable () -> Unit,
buttons: @Composable () -> Unit,
modifier: Modifier = Modifier,
background: @Composable BoxScope.() -> Unit = {},
) {
Box(
modifier = modifier
.fillMaxSize(),
) {
background()
ConstraintLayout(
modifier = Modifier.fillMaxSize(),
) {
val (topSection, middleSection, bottomSection) = createRefs()
Description
Release a stable version of the benchmark baseline gradle plugin that fixes Gradle isolated project feature.
1.3.3 was released on 10/16/2024 and doesn't have the fixes. 1.4.0-* is still in alpha. Given 1.4.0 is taking a while, we should release a bugfix release 1.3.4 that has the fixes.
A starting point is r.android.com/3548580