When targeting clover apk to new environment (EU) I receive line 15: adb: command not found No Android devices detected.
I am using Genymotion.
What am I doing wrong?
When targeting clover apk to new environment (EU) I receive line 15: adb: command not found No Android devices detected.
I am using Genymotion.
What am I doing wrong?
adb
needs to be in your path. It comes as part of the Android SDK distribution. E.g., I have this in my .bashrc,
export ANDROID_HOME=~/android-sdk-linux
export PATH=$ANDROID_HOME/platform-tools:$ANDROID_HOME/tools:...
1 Person is following this question.