Set up Android Debug Bridge in Ubuntu
6 March 2019After you installed Android Studio you may want to make use of adb in your command line. For this you have to add tools and platform-tools to your PATH Variables. Open Android Studio and go to File->Project Structure. The folder of Android SDK Location is your ANDROID_HOME.
sudo nano ~/.bashrc
export ANDROID_HOME=~/Android/Sdk
export PATH=${PATH}:$ANDROID_HOME/tools:$ANDROID_HOME/platform-tools
We're happy to get in touch with you