Obsolete
Status Update
Comments
ti...@gmail.com <ti...@gmail.com> #2
Thank you for your feedback. We assure you that we are doing our best to address the issue reported, however our product team has shifted work priority that doesn't include this issue. For now, we will be closing the issue as won't fix obsolete. If this issue currently still exists, we request that you log a new issue along with latest bug report here https://goo.gl/TbMiIO .
vi...@gmail.com <vi...@gmail.com> #3
Thanks,
It worked for me.
It worked for me.
mr...@gmail.com <mr...@gmail.com> #4
Does anyone know what functionality this could affect if it is not working properly, such that we could test to ensure the above workaround is indeed correct? I also successfully completed the package install removing the lib32bz2-1.0 package, and android studio starts without issue, and I haven't encountered any errors...yet, but I am still concerned of the potential problems that might popup.
ac...@gmail.com <ac...@gmail.com> #5
Thanks,
It worked for me.
It worked for me.
my...@gmail.com <my...@gmail.com> #6
It don't work for me. I still can't setup the android sdk
jo...@google.com <jo...@google.com>
sa...@google.com <sa...@google.com> #7
Thank you for your feedback. We have tried our best to address the issue reported, however our product team has shifted work priority which doesn't include this issue. For now, we will be closing the issue as "Won't Fix (Obsolete)". If this issue still currently exists, we request that you log a new issue along with the latest bug report here: https://goo.gl/TbMiIO and reference this bug for context.
Description
The article states (at point 4):
"Note: If you are running a 64-bit version of Ubuntu, you need to install some 32-bit libraries with the following command:
sudo apt-get install lib32z1 lib32ncurses5 lib32bz2-1.0 lib32stdc++6
"
The command does not work with Ubuntu 16.04 because lib32bz2-1.0 is no longer available at the repositories as libbz2-1.0 is now a Multi Arch package.
An equivalent working command is:
sudo apt-get install lib32z1 lib32ncurses5 libbz2-1.0:i386 lib32stdc++6
As lib32xxxx packages are being replaced by Multi Arch (xxxx:386) packages the command may not work again soon.
Ideally the command should be
sudo apt-get install libz1:i386 libncurses5:i386 libbz2-1.0:i386 libstdc++6:i386
but I don't have the time to test if replacing all the old lib32xxxx libraries for the Multi Arch ones works with visual studio.
Please correct the install guide as the stated command as is does not work.