Difference between running lint via Android Studio menu and gradlew command-line

gonzobrains picture gonzobrains · Jul 22, 2014 · Viewed 9k times · Source

When I run the following on a command line:

./gradlew -lint

I get different results than if I choose the following menu option within Android Studio.

Analyze->Inspect Code...

Can anyone explain this? Is this normal? Should a prudent developer run both in order to find all potential problems with his/her project?

Answer

Robert picture Robert · Nov 11, 2015

You are running two different tools. The command:

$ ./gradlew lint

runs the lint tool that comes with the Android SDK and the menu option

Analyze->Inspect Code...

in Android Studio is a feature inherited from JetBrains IntelliJ IDEA which runs:

<android studio path>/bin/inspect.sh