Android Studio Avd Not Working Despite Having Image On Linux
I downloaded a nexus 4 x86-x64 image on my x64 ubuntu i5 laptop. Here are the error lines: 6:22:45 PM EmptyThrowable: /home/youssef/Android/Sdk/tools/mksdcard: error while loadi
Solution 1:
I had this error. I tried to find fix and found on askubuntu.comapt-get install gcc-multilib
This fix solved this problem for me! Here it is!
Solution 2:
Assuming you are using a Debian derivative
$ sudo apt-get install libgcc1:i386
to verify the libraries used by mksdcard
$ ldd /path/to/Android/Sdk/tools/mksdcard
linux-gate.so.1 => (0xf77e4000)
libgcc_s.so.1 => /lib/i386-linux-gnu/libgcc_s.so.1 (0xf779c000)
libc.so.6 => /lib/i386-linux-gnu/libc.so.6 (0xf75ed000)
/lib/ld-linux.so.2 (0x56629000)
Post a Comment for "Android Studio Avd Not Working Despite Having Image On Linux"