Colton Idle
12/06/2020, 10:49 AMkotlinOptions {
jvmTarget = '1.8'
useIR = true
}
buildFeatures {
compose true
viewBinding true
}
composeOptions {
kotlinCompilerVersion '1.4.20'
kotlinCompilerExtensionVersion '1.0.0-alpha08'
}
...
implementation "androidx.compose.runtime:runtime:1.0.0-alpha08"
3. Everything works fine
4. Add implementation "androidx.compose.ui:ui:1.0.0-alpha08"
5. Every fragment in my app now has a red line on the class name (but still seems to build fine). Hovering over the error says "Class 'MyFragment' is not abstract and does not implement abstract base class member public abstract fun <I : Any!, O : Any!> prepareCall"
Ideas?sashjakk
12/06/2020, 12:27 PMColton Idle
12/06/2020, 8:27 PM