I have an lint.xml file and want to apply it to whole project but not only one module. It can't be found when i move it from module dir to project dir.
This is my config about lintOptions in build.gradle from module
lintOptions {
checkReleaseBuilds false
abortOnError false
lintConfig file("../lint.xml")
}
and my lint.xml file is under project dir.(same dir as settings.gradle)