Closed fobos531 closed 1 year ago
As of right now Square's Reader SDK hasn't updated to use work-runtime 2.8.0, so as a workaround you can forcing the gradle dependency to use either 2.7.0 or 2.8.0.
configurations.all {
resolutionStrategy.eachDependency { details ->
if (details.requested.group == 'androidx.work.work-runtime') {
details.useVersion "2.7.0"
}
}
}
Describe your question
Hello, by inspecting the dependencies of my app, I have determined that Square's Android Reader SDK uses work-runtime 2.7.0. However, I am using another dependencies that depend on work-runtime 2.8.0. Because of that, I'm getting duplicate class conflicts:
Is it safe to run the Square SDK with work-runtime-2.8.0? What solutions do you offer in this situation?