I had a problem which I posted on Stack Overflow: http://stackoverflow.com/questions/33514808/
Basically I’m finding that Gradle doesn’t replace the libraries with its own dependencies even when I try to force it to. That’s fine, maybe it’s by design. I mean, there is a way to work around it, right? It looks something like this:
idea {
module {
iml {
beforeMerged { module ->
module.dependencies.clear()
}
}
}
}
But even with this workaround, the .iml files still have library entries that were previously present.
I guess now I will be doing another workaround-for-a-workaround where I delete the nodes manually?