I am new to Linux and am attempting to set up my machine for Android development. I installed the SDK, and I set up the path to the "platform-tools" in my path by altering ~/.bashrc and adding the following:
export PATH=$PATH:/home/user/sdk/platform-tools
When I type:
echo $PATH
into the command line, it spits back the directory to my sdk platform-tools.
Now, when I type:
adb devices
The command line says "adb command not found".
If anyone could help me out, it would be greatly appreciated. Thanks!
~Nemisis7654