开发者

How to recompile with -Xlint:unchecked in Ant build task?

开发者 https://www.devze.com 2023-02-02 17:38 出处:网络
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.

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?


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

<compilerarg value="-Xlint:unchecked" />


In AndroidStudio, do this:

allprojects {
    tasks.withType(JavaCompile) {
        options.compilerArgs << "-Xlint:deprecation"
    }
}
0

精彩评论

暂无评论...
验证码 换一张
取 消