Hi, is it possible to have a shared gradle script which can be imported into another script? I’m looking for the ability to import methods and such into a script and potentially override those methods with local implementations.
It looks like this is possible with a multi-project build, but I’m looking to factor out logic that applies across unrelated projects.
I’ve also tried
apply from: 'other.gradle'
, but I’m not able to call methods in the other.gradle script.