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]

link|improve this question

50% accept rate
"without using ant" -- why? – CommonsWare Aug 25 '11 at 15:02
1  
if I use any IDE means ..............i cant able to get to know abt the whole process............so that only just if it is command line ...........I get know abt each and every step by step process – rajNaveen Aug 26 '11 at 6:14
1  
thanx man,.......I got it worked...........it is due to the dx.bat file...........in dx.bat file there was set javaOpts= and i deleted it ....................it is due memory shortage......thanx,raj – rajNaveen Aug 26 '11 at 7:26
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.