Gradle Build Exception: AAPT Process Not Ready to Receive Commands

This may be a recurring question, but after trying to solve all the problems, I cannot solve the following error:

Error:Execution failed for task ':app:mergeDebugResources'.
> Error: java.util.concurrent.ExecutionException: java.lang.RuntimeException: AAPT process not ready to receive commands

I tried everything except one solution:

sudo apt-get install lib32stdc++6
sudo apt-get install lib32z1

What commands will be executed before these commands are executed? and if anyone has a different solution than this, please tell me it will be very helpful ..

+6
source share
3 answers

Go to the project structure by clicking (ctrl+shift+alt+s), go to the tab Projectwith the tab Gradle Versionbefore 3.2and Project Versionbefore 2.2.

This works great for me.

+2
source

linux 64ver, install

  • lib32std++ 6 ( lib32std++ 5)
  • lib32z1 (, lib32zlib)

, linux distro repo. https://pkgs.org/

+1

. gradle 23.0.3, gradle 2.2.2

0

Source: https://habr.com/ru/post/1017174/


All Articles