You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the latest Android Gradle Plugin Canary, compilehas been removed in favor of implementation and api. That results in this line failing during build:
Execution failed for task ':views:generatePomFileForMavenPublishPublication'.
> Could not apply withXml() to generated POM
> Could not get unknown property 'compile' for configuration container of type org.gradle.api.internal.artifacts.configurations.DefaultConfigurationContainer.
I don't know much about Groovy syntax, but I think adding a check before accessing the property should quickly solve this problem.
The text was updated successfully, but these errors were encountered:
In the latest Android Gradle Plugin Canary,
compile
has been removed in favor ofimplementation
andapi
. That results in this line failing during build:gradle-maven-plugin/artifact-pom-manager.gradle
Line 86 in c40e90e
I don't know much about Groovy syntax, but I think adding a check before accessing the property should quickly solve this problem.
The text was updated successfully, but these errors were encountered: