Merge pull request #3340 from vitorpamplona/claude/github-ci-failures-yja302

fix(build): resolve :nappletHost benchmark variant via matchingFallbacks
This commit is contained in:
Vitor Pamplona
2026-06-22 23:08:53 -04:00
committed by GitHub
+8
View File
@@ -16,6 +16,14 @@ android {
sourceCompatibility = JavaVersion.VERSION_21
targetCompatibility = JavaVersion.VERSION_21
}
buildTypes {
// :amethyst defines a `benchmark` build type (release + profileable) for macrobenchmarks.
// Declare a matching variant here so the app can resolve this library for benchmark builds.
create("benchmark") {
initWith(getByName("release"))
}
}
}
kotlin {