0
java.lang.LinkageError: com.facebook.litho.sections.widget.RecyclerCollectionComponent

litho RecyclerCollectionComponent を使用する場合

RecyclerCollectionComponent component = RecyclerCollectionComponent.create(c).section(
                    section
            ).setRootAsync(false).disablePTR(true).build();
4

1 に答える 1

0

数日無駄にした後、これはリソフレームワークのバグによるものであることがわかり、古いバージョンのリソを使用して解決しました。

使ってみて

implementation 'com.facebook.litho:litho-core:0.12.0'
implementation 'com.facebook.litho:litho-widget:0.12.0'
compileOnly 'com.facebook.litho:litho-annotations:0.12.0'
annotationProcessor 'com.facebook.litho:litho-processor:0.12.0'
// Sections
implementation 'com.facebook.litho:litho-sections-core:0.12.0'
implementation 'com.facebook.litho:litho-sections-widget:0.12.0'
compileOnly 'com.facebook.litho:litho-sections-annotations:0.12.0'
annotationProcessor 'com.facebook.litho:litho-sections-processor:0.12.0'
// SoLoader
implementation 'com.facebook.soloader:soloader:0.2.0'
于 2021-10-20T05:56:27.740 に答える