我管理和運行我的命令行Android應用程序,而無需使用螞蟻機器人項目,我按照這些步驟:管理命令行
- 產生R.java
- 編譯R.java和所有
.java
文件在src
到.class
文件 - 使用以下命令組裝組類文件到文件
dex
dx --dex --verbose --output=./bin/classes.dex ./bin
.class
文件位於bin目錄中。
但我發現了以下錯誤在下列步驟操作:
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
由於這個原因,我無法創建Classes.dex
文件。
有人可以提出一個解決方案嗎?
「不使用螞蟻」 - 爲什麼? – CommonsWare
如果我使用任何IDE手段..............我無法得知abt整個過程............,以便只有當它是命令行...........我知道ABT每個步驟過程 – rajNaveen
thanx男人,.......我得到它的工作..........這是由於dx.bat文件...........在dx.bat文件中有 set javaOpts =並且我刪除了它.............. ......這是由於記憶力不足...... thanx,raj – rajNaveen