I have an Android Studio project in which I have multiple modules, each of those module depending on a share module. And let\'s say that this share module has an xml file ca
To exclude all build folders from all modules use this pattern:
!file:*build*/
If you want exclude also all libraries, simply use this pattern:
!file:*build*/&&!lib:*..*
Detailed description: