EdinSe

Results 2 comments of EdinSe

You can try this workaround: ``` implementation("com.google.android.flexbox:flexbox:3.0.0") modules { module("com.google.android:flexbox") { replacedBy("com.google.android.flexbox:flexbox") } } implementation("com.github.stfalcon-studio:Chatkit:0.4.1") { exclude group: "com.google.android", module: "flexbox" } ```

> > Wow, so I needed debugImplementation 'androidx.test:core-ktx:1.4.0'. androidTestImplementation 'androidx.test:core-ktx:1.4.0' was not enough. > > What a catch. Definitely solves the problem. I can confirm that this solved the issue...