I generally advice agains multi module. All you get is slower builds and more lines of gradle code to maintain. Keep it simple. For the same reason, the fewer obscure plugins you depend on the less headaches you have when the time comes stuff needs to be upgraded. YAGNI.
If you need separate layers in your architecture, packages are good enough. Typically none of the gradle modules used for anything else than the single app they are a part off and people just tend to copy paste the mess around instead of solving it; so you are multiplying your problems as well.