Fixed
Status Update
Comments
jb...@google.com <jb...@google.com>
cs...@supercharge.io <cs...@supercharge.io> #2
Is this fixed? I'm still seeing this issue with AGP 8.1.0-beta01 + Gradle 8.1
jb...@google.com <jb...@google.com> #3
The fix has not been landed.
cs...@supercharge.io <cs...@supercharge.io> #4
Due to this bug in CI we hit configuration cache invalidation 100% of the time. Can we make sure the fix lands soon? And especially before 8.1.0 stable.
ap...@google.com <ap...@google.com> #5
I cc'ed you on the CL which should be landed this week.
cl...@google.com <cl...@google.com> #6
Aurimas, is this 8.1 blocking for Androidx? If not, feel free to remove the "Blocking release" label.
pr...@google.com <pr...@google.com> #7
il...@google.com <il...@google.com> #9
Reassigning to Xav to review CP to 8.1 branch
ko...@gmail.com <ko...@gmail.com> #10
Scott, do we have a cherry-pick ready for the lint fix?
Description
Version used: 2.8.3
@Serializable
class MyRoute(
val platforms: List<Platform>
)
enum class Platform {
ANDROID, IOS
}
composable<MyRoute> { MyScreen() }
This will result in an exception:
java.lang.IllegalArgumentException: Route MyRoute could not find any NavType for argument platforms of type kotlin.collections.ArrayList - typeMap received was {}
Please support list of enums by default.