Is there any way, how to exclude android generated files (or manually specify excluded folders), from Analyze -> Inspect Code ?
You can do it using the Gradle IDEA plugin:
apply plugin: 'idea' idea { module { excludeDirs = [file("unwanted-directory-name")] } }