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 call sample.xml
When I search to open file with Navigate -> Files... and type "sample.xml", I'll get
- Share/src/main/res/values/sample.xml
 - ModuleA/build/intermediates/exploded-arr/.../res/values/sample.xml
 - ModuleB/build/intermediates/exploded-arr/.../res/values/sample.xml
 - ModuleC/build/intermediates/exploded-arr/.../res/values/sample.xml
 - ModuleD/build/intermediates/exploded-arr/.../res/values/sample.xml ...
 
Since the files in build folder are generated and we shouldn't edit them, there is no reason why I want to include them in my search result. Is there anyway I can exclude them?




