Can someone please help me substitute transitive d...
# gradle
p
Can someone please help me substitute transitive dependency? I need to use a dependency, that depends on another dependency from JCenter, that was recently removed. I tried following, but without luck.
Copy code
configurations.all {
  resolutionStrategy.dependencySubstitution {
    substitute(module("com.chaos.view:pinview:1.4.3"))
      .using(module("com.github.ChaosLeung:PinView:1.4.3"))
  }
}
Doing this, dependency is downloaded, but build still fails
Copy code
Execution failed for task ':app:mergeAppGalleryDevelopmentDebugResources'.
> Could not resolve all files for configuration ':app:appGalleryDevelopmentDebugRuntimeClasspath'.
   > Could not find com.chaos.view:pinview:1.4.3.
not kotlin but kotlin colored 1
v
Besides that the question is off-topic, if it is not super-urgent, just wait a day or two. I don't think that change like it is was intentional and JFrog will hopefully fix it as the broke many builds out there.
p
I see. Managed to find update now. Sorry for offtopic 🙂