39

When I run the "compile" target of my Ant "build.xml" file, then I get the following message:

Note: Some input files use unchecked or unsafe operations.
Note: Recompile with -Xlint:unchecked for details.

My compile target is the following:

  <target name="compile">
    <javac srcdir="${src.dir}" destdir="${classes.dir}" debug="true" debuglevel="lines,source" includeantruntime="false">
      <classpath refid="class.path" />
    </javac>
    <javac srcdir="${test.dir}" destdir="${classes.dir}" debug="true" debuglevel="lines,source" includeantruntime="false">
      <classpath refid="class.path" />
    </javac>
  </target>

What do I have to change in my build.xml file so that -Xlint:unchecked is done there?

Benny Code
  • 51,456
  • 28
  • 233
  • 198

2 Answers2

67

Add the following element in <javac></javac> section:

<compilerarg value="-Xlint:unchecked" />
karlsebal
  • 1,449
  • 17
  • 23
Lukasz
  • 7,572
  • 4
  • 41
  • 50
2

In AndroidStudio, do this:

allprojects {
    tasks.withType(JavaCompile) {
        options.compilerArgs << "-Xlint:deprecation"
    }
}
androidevil
  • 9,011
  • 14
  • 41
  • 79