androidtool-mac
androidtool-mac copied to clipboard
Does Android Tool support fastboot commands?
I'm trying to flash a device using flashboot commands and I thought it would be handy to import this into android tool as an easy place to save and execute it. However, the fastboot flashall -w
command doesn't seem to be running, or the script is getting cutoff to early and the system never picks up on the new build.
Any ideas?
What does the debug console output show?
I'm not sure how to enable that, is that something that Android Tool supports?
Yes - right here
Awesome! Thanks for the screenshot. At the end of the output it spits this out
/Users/davidthacker/Library/Application Support/AndroidTool/UserScripts/flash-build.sh: line 11: fastboot: command not found
So it looks like it isn't able to use fastboot.
ah, the scripts run without your environments vars, like PATH. You could try something like bash -l -c fastboot [args]
Or alternatively, simply specify the full path to fastboot like /usr/local/bin/fastboot [vars]
. To find out where fastboot is, do a which fastboot
from Terminal