We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3d629c5 commit 963c449Copy full SHA for 963c449
shell/platform/android/test_runner/build.gradle
@@ -17,6 +17,13 @@ apply plugin: "com.android.library"
17
18
rootProject.buildDir = project.property("build_dir")
19
20
+// Shows warnings for usage of deprecated API usages.
21
+gradle.projectsEvaluated {
22
+ tasks.withType(JavaCompile) {
23
+ options.compilerArgs << "-Xlint:deprecation"
24
+ }
25
+}
26
+
27
def availableProcessors = Runtime.runtime.availableProcessors() ?: 1
28
29
println "=========================================="
0 commit comments