Last active
October 10, 2018 18:37
-
-
Save hesoyamcode/d8df3e8761b68a1f25559f59934c03d5 to your computer and use it in GitHub Desktop.
Error:java.util.concurrent.ExecutionException: java.lang.RuntimeException: AAPT process not ready to receive commands Ubuntu 64
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Set Env variabel (type in your terminal) or set it on .bashrc or .bash_profile | |
=============================================================================== | |
export ANDROID_HOME=/home/fuadaip/Android/Sdk | |
export PATH=$PATH:$ANDROID_HOME/tools:$ANDROID_HOME/platform-tools | |
intall if not installed | |
=============================================================================== | |
sudo apt-get install lib32stdc++6 | |
sudo apt-get install lib32z1 | |
Logout ubuntu then login | |
https://gist.github.com/fuadajip/d8df3e8761b68a1f25559f59934c03d5#file-gistfile1-txt-L11
A much simpler way is to then type source ~./bashrc
or which ever file you edited.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thank you!