Created
July 11, 2015 12:43
-
-
Save dlew/9fd280bbc057af800213 to your computer and use it in GitHub Desktop.
From BaseVariant's source: https://android.googlesource.com/platform/tools/base/+/master/build-system/gradle-core/src/main/groovy/com/android/build/gradle/api/BaseVariant.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Returns the Java Compilation task if javac was configured to compile the source files. | |
* @deprecated prefer {@link #getJavaCompiler} which always return the java compiler task | |
* irrespective of which tool chain (javac or jack) used. | |
*/ | |
@Nullable | |
@Deprecated | |
JavaCompile getJavaCompile() throws IllegalStateException; | |
/** | |
* Returns the Java Compiler task which can be either javac or jack depending on the project | |
* configuration. | |
*/ | |
@NonNull | |
AbstractCompile getJavaCompiler(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment