Anyone knows how to exclude test files from find usages results ?
Like everything that is under : src/test/
You are able to create a custom search Scope
A scope is a subset of files, packages and/or directories in your project, to which you can limit the application of specific operations, e.g. search, code inspection, insertion of copyright notices, etc.
Edit -> Find -> Find Usages Settings...
Use pattern
!file:*Test.java
or !file:*Test.java&&!file:*Tests.java
or !test:*.*&&!test:*
All your scopes you can find
Android Studio -> Preferences -> Appearance & Behavior -> Scopes
Also you can customise a pattern by using syntax
[Skip generated pattern]