Hi all, I had to update to android gradle plugin `...
# gradle
l
Hi all, I had to update to android gradle plugin
com.android.tools.build:gradle
to
7.0.0-alpha09
to get Jetpack compose running. Now when I run
publishToMavenLocal
, I get the error
Copy code
* What went wrong:
Execution failed for task ':<library>:generatePomFileForLibraryAarPublication'.
> Could not apply withXml() to generated POM
   > Configuration with name 'compile' not found.
Has anyone else run into this issue?
g
Pom probably immutable now
Do you really need this custom xml for pom? I think you can use standard AGP integration with maven-publish plugin
l
Thank you, this is very helpful. I'll look into it.