android - Access adb shell from ubuntu terminal not working -
i trying access adb shell ubuntu terminal viewing sqlite db values. using following command:
"cd /home/santhosh/android/adt-bundle-linux-x86_64-20140321/sdk/platform-tools/adb shell"
but getting response : no command adb found. new linux terminal. do? tried put path also. adb shell not working. do?
this wont work terminal unless use ./adb or set classpath
so better use
"cd /home/santhosh/android/adt-bundle-linux-x86_64-20140321/sdk/platform-tools/"
then ./adb shell
Comments
Post a Comment