Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Gradle Build Exception : AAPT process not ready to receive commands

Tags:

android

This might be duplicate question but after trying all solution I'm not able to solve 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 all except one solution:

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

what exactly commands will be before executing this commands?? and if anyone have other solution than this please tell me, It will be very useful..

like image 446
Supriya kahalekar Avatar asked May 11 '17 13:05

Supriya kahalekar


2 Answers

linux 64ver, install

  • lib32stdc++6(or lib32stdc++5)
  • lib32z1(maybe its name is lib32zlib)

you can search them here ,to confirm their real names in you linux distro repo. https://pkgs.org/

like image 52
levinit Avatar answered Nov 05 '22 08:11

levinit


Go to Project structure by clicking (ctrl+shift+alt+s), in that go to Project tab change Gradle Version to 3.2 and Project Version to 2.2 .

This works fine for me.

like image 27
bhanuchand panthala Avatar answered Nov 05 '22 09:11

bhanuchand panthala