在 Android Gradle 任务中获取编译后的 .class 输出目录

Get compiled .class output directory in Android Gradle task

我正在为我的 Android 项目创建一个 Gradle 任务,它需要知道编译的 .class 文件的路径。我怎样才能得到这条路?我发现 sourceSets.main.output.classDir 会给我这条路径的建议 (here and here; also see the Gradle docs for SourceSet),但是当我尝试使用它时,出现错误

Could not find property 'output' on source set main.

即使我使用以下 build.gradle:

创建一个新的最小项目,也会发生这种情况
buildscript {
    repositories {
        mavenCentral()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:1.5.0'
    }
}
apply plugin: 'android'
android {
    compileSdkVersion 22
    buildToolsVersion "20.0.0"

    task printClassesDir << {
        println sourceSets.main.output.classesDir
    }
}

这个最小的项目可以很好地构建,但是如果我 运行 任务 printClassesDir 就会出现错误。如何在我的任务中获取 .class 文件输出目录?


我也试过 this answer to another question<build variant>.javaCompile.classpath 的建议。我能够通过

访问此 属性
applicationVariants.find{it.name == 'debug'}.javaCompile.classpath

但是这个文件集合是空的。


作为参考,这里是我的最小项目的其他文件:

src/main/AndroidManifest.xml

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
          package="a.b">
  <uses-sdk
      android:minSdkVersion="9"
      android:targetSdkVersion="22" />
  <application>
    <activity android:name=".Main">
      <intent-filter>
    <action android:name="android.intent.action.MAIN" />
    <category android:name="android.intent.category.LAUNCHER" />
      </intent-filter>
    </activity>
  </application>
</manifest>

src/main/java/a/b/Main.java

package a.b;
import android.app.Activity;
public class Main extends Activity { }

我能够使用 compile<Variant>JavaWithJavac 任务找到这条路径。这些是 JavaCompile 类型,因此它们具有 destinationDir 属性:

task printDebugClassesDir << {
    println compileDebugJavaWithJavac.destinationDir
}

这将打印 build/intermediates/classes/debug 目录,其中包含已编译的 class 文件。同样的事情适用于发布。