I am managing and running my android app from command line without using ant,i followed following steps --generated R.java --compiled R.java, .java in src to .class files --assembling set of class files into dex file using below command
dx --dex --verbose --output=./bin/classes.dex ./bin
.class files are in bin directory.
but i gettin error in this step like
java.lang.Runtime exception:.\bin file not found
at com.android.dx.cf.direct.ClassPathOpener.process
at com.android.dx.command.dexer.Main.processOne
at com.android.dx.command.dexer.Main.processAllFiles
at com.android.dx.command.dexer.Main..run
at com.android.dx.command.dexer.Main.main
at com.android.dx.command.Main.main
Due to this.........I can't able to create Classes.dex file
can some one gimme a solution for this,thanx,raj [not using eclipse and ant only through command line]