Fixed
Status Update
Comments
ma...@google.com <ma...@google.com>
ap...@google.com <ap...@google.com> #2
I think there are a number of existing issues already requesting this (particularly for the nullability annotations). The blocker for this is that metalava needs to support typeuse annotations, and it doesn't yet (and it's a nontrivial amount of work; there is partial support in there behind a compile-time flag, but it's not complete.)
na...@google.com <na...@google.com> #3
Kotlin's AnnotationTarget.TYPE
maps to Java's ElementType.TYPE_USE
, which was added in SDK 26. If we use this in Java code, we will likely need to do one of the following:
- Require
minSdkVersion=26
-- which is too high at this point in time - Advise clients to enable core library desugaring -- which I think still has client usability issues
- Advise clients to ignore
javac
class resolution warnings -- which we're already getting flak for with Kotlin
Tor, do you see any better option here?
pr...@google.com <pr...@google.com> #4
And, of course, that Metalava doesn't support typeuse annotations yet. But we (AndroidX) have more control over when that happens.
Description
Jetpack Compose version: 1.6.2
Jetpack Compose component used: compose.material3
Android Studio Build: Iguana 2023.2.1 rc2
Kotlin version: 1.9.22
Steps to Reproduce or Code Sample to Reproduce:
Third elevated button will change its colors to tonal button, because tonal button caches its values into wrong variable (dedicated to tonal button).
From the sources:
androidx.compose.material3.Button.kt