stfalcon-studio/ChatKit

Update flexbox to 3.0.0

angelolloqui opened this issue · 3 comments

ChatKit is using flexbox 1.0.0.

However, there are several updates and improvements in flexbox. We are using the latest version in our app and it has some conflicting dependencies that does not allow me to use this lib. Can it be upgraded?

same prolem here. Please update the flexbox to 3.0.0 immediately.

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"
    }

@EdinSe What does this workaround do?