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?
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