In android studio, when I create my project, in my event log Compilation completed successfully with 102 warnings in 52 sec . Where can I see these compiler warnings? I know about Analyze -> Inspect Code , which I don't want. I also tried to create my application using ant script with
<target name="-warn"> <javac includeantruntime="false" srcdir="src/com/mobile" fork="true" debug="true"> <compilerarg line="-Werror -Xlint:all"/> </javac> </target>
This shows some warnings when even a fixed one does not reduce compilation warnings. What is the correct way?
android android-studio compiler-warnings
Uma
source share