In my shell script I cannot invoke ant, or mv or cp commands,
but the same commands execute on terminal. Below is my script:
sample.sh file
#! /bin/sh
cp filename.so filename_org.so
android update project -p .
ant clean
ant release
PATH is set in the .bashrc file:
export PATH=$PATH:/usr/bin/
cp, mv, ant are working only under terminal not via script.
android/ant, are these binaries in /usr/bin?