Reputation: 31963
I navigate to my tools dir
cd /home/username/android-sdks/tools
and run the
monkeyrunner somescrip
and it says
monkeyrunner: command not found
I have the android home path set, but still this doesn't works
the interesting thing is that when I type ls command I see the monekyrunner
dmtracedump etc1tool mksdcard sqlite3
android draw9patch hierarchyviewer monkeyrunner traceview
ant emulator hprof-conv NOTICE.txt zipalign
apkbuilder emulator-arm layoutopt proguard
ddms emulator-x86 lib source.properties
Upvotes: 1
Views: 4304
Reputation: 14376
add /home/username/android-sdks/tools
to the PATH, call ./monkeyrunner
from that directory or call /home/username/android-sdks/tools/monkeyrunner
from the directory where somescrip
is lcoated (the first is the correct solution)
Upvotes: 4