Kevin Robatel
Kevin Robatel

Reputation: 8386

Gradle obsolete raise an error instead of a warning

When using com.android.tools.build:gradle:3.3.0-beta01, gradle fail with:

ERROR: API 'variant.getExternalNativeBuildTasks()' is obsolete and has been replaced with 'variant.getExternalNativeBuildProviders()'. It will be removed at the end of 2019. For more information, see https://d.android.com/r/tools/task-configuration-avoidance.

I search in the documentation but I don't find how to raise warning, not error. End of 2019 is not here yet.

Upvotes: 2

Views: 366

Answers (1)

Henrique Monte
Henrique Monte

Reputation: 1284

It happened to me and the problem was solved by commenting on the Fabric plugin in gradle.

If your case is the same but you need to continue using the Fabric, I recommend going back to the to the previous version of the gradle at the project level.

Change the classpath version to com.android.tools.build:gradle:3.2.1.

Upvotes: 1

Related Questions