This message was deleted.
# android
s
This message was deleted.
1
i
to enforce rules in the dependency graph I really like this plugin https://github.com/jraska/modules-graph-assert
1
1
e
Project dependencies are of type …
ProjectDependency
😅 so should be quite easy to do
Copy code
appProject.configurations.configureEach {
  withDependencies {
    withType<ProjectDependency>().configureEach {
      /* fail build based on your assertion */
    }
  }
}
1