Fixed
Status Update
Comments
je...@google.com <je...@google.com> #2
Please file a bug against gradle here : https://github.com/gradle
[Deleted User] <[Deleted User]> #3
This is an issue in Google's Android Gradle Plugin, not in Gradle itself. The current code uses `System.out.println` (line 186 of AndroidConfig.java, at least as of Beta6), but it should instead be using Gradle's logging infrastructure: https://docs.gradle.org/current/userguide/logging.html
je...@google.com <je...@google.com> #5
ag/If8e2d64a8d7eb1b2470aa7fedfd6dbd7eca267ac
will be fixed in beta8,
will be fixed in beta8,
[Deleted User] <[Deleted User]> #6
Excellent, thank you! :D
Description
Android Plugin Version: 3.0.0-alpha6
Running `./gradlew -q tasks -m` should not print out anything, but if your project still uses the `compile` dependency configuration anywhere, it will print out something along the lines of
Configuration 'compile' in project ':app' is deprecated. Use 'implementation' instead.
The plugin should respect the `-q` quiet flag and not print anything out. It looks like this print is coming from `com.android.build.gradle.AndroidConfig` class, close to the bottom (in the `DeprecatedConfigurationAction.execute` method).