Installing
2. Downloading Android Command Line Tools
Download Android Command Line Tools for Slackware GNU/Linux
Here Get Android Command Line Tools .zip for SlackwareLink to Download Android Command Line Tools for Slackware GNU/LinuxTo find it Scroll down right to the Bottom of the Page.
And possibly on Browser Pop-up choose to Save it.3. Installing Android Command Line Tools
Now to Install Android Command Line Tools on Slackware
First, make the Target Directory with:Copymkdir -p ~/Android/Sdk
And then Extract the Archive directly into the Target with:
Copyunzip -d ~/Android/Sdk ~/Downloads/commandlinetools-linux*.zip
Now amend the User PATH:
Copyecho "export PATH=~/Android/Sdk/cmdline-tools/bin:$PATH" >> ~/.bashrc
Again if not already done Set the “ANDROID_HOME” Variable like:
Copyecho "export ANDROID_HOME=~/Android/Sdk" >> ~/.bashrc
Last, Reload the Bash Environment with:
Copybash