libz.so.1: cannot open shared object file

After checking to which package does the libz.so.1 belongs (http://packages.ubuntu.com/lucid/i386/zlib1g/filelist) you should try to install zlib1g: sudo apt-get install zlib1g As pointed by @E-rich, it may be required to add a :i386 suffix to the package name for the package manager correctly identify it: sudo apt-get install zlib1g:i386 EDIT (for CentOS or other distro that … Read more

Is there a way to automate the Android SDK installation?

UPDATE The latest versions introduce sdkmanager, a command line tool that allows you to view, install, update, and uninstall packages for the Android SDK. The sdkmanager tool is provided in the Android SDK Tools package (25.2.3 and higher) and is located in android_sdk/tools/bin/. sdkmanager [–uninstall] [<common args>] [–package_file <file>] [<packages>…] sdkmanager –update [<common args>] sdkmanager … Read more

Starting the Android emulator in SDK tools, revision 12

As was previously suggested, it does seem to be caused by the fact that there is a space in the default installation path of the Android SDK: C:\Program Files\Android\android-sdk\ There are a couple of possible solves, though- move installation directories to paths that do not contains spaces (as already mentioned)… but simpler and possibly slightly … Read more