Fixed
Status Update
Comments
ma...@google.com <ma...@google.com> #2
Fix should be a release of androidx.activity 1.3.0-alpha02 from build ab/7134643
xu...@gmail.com <xu...@gmail.com> #3
1.3.0-alpha02
Class 'androidx.activity.compose.ComponentActivityKt' is compiled by an unstable version of the Kotlin compiler and cannot be loaded by this compiler
Apps using Compose alpha12 and specifically artifacts like androidx.compose.ui:ui-test-junit4:1.0.0-alpha12
that internally use setContent
should add the activity-compose:1.3.0-alpha02
dependency to their dependencies
block to ensure that the 1.3.0-alpha01
artifact is not used:
implementation 'androidx.activity:activity-compose:1.3.0-alpha02'
ap...@google.com <ap...@google.com> #5
Can I in script it manually or reset
Description
Jetpack Compose release version: 1.0.1
I'd like to implement object for
TextToolbar
interface to present custom text toolbar. I'm doing it like this:But I'm getting next error:
I was able to fix it by implementing typealias with the same name
But I think it's a mistake, and it should be public.