Home > OS >  What does mean these errors in Gradle?
What does mean these errors in Gradle?

Time:05-17

I'm trying to assemble a Kotlin project using Gradle and I'm getting this kind of errors:

Execution failed for task ':app:processProDebugResources'.
> Could not resolve all files for configuration ':app:ProDebugRuntimeClasspath'.
   > Failed to transform misnapworkflow_UX2-release.aar to match attributes {artifactType=android-compiled-dependencies-resources}.
      > Execution failed for AarResourcesCompilerTransform: /gradle/conf/caches/transforms-3/dad12f3b940e882b6d90ca007996f37e/transformed/jetified-misnapworkflow_UX2-release.
         > AAPT2 aapt2-7.0.4-7396180-linux Daemon #0: Daemon startup failed
           This should not happen under normal circumstances, please file an issue if it does.

But I don't understand why it is failing.

CodePudding user response:

In the end, the base Docker image I was taking was an Alpine and after changing it the execution was successful. Probably it was missing something.

  • Related