Re: [android-developers] How to debug android project under command line?

2012-02-07 Thread ji fei
Thanks for your link, It's really useful. I have already got 2G ram, but my eclipse got to no response always. It's no double that eclipse is great ide, i thought it's must caused by myself. I still don't know why google just provider script for emacs, why not provider some script for vim. On

Re: [android-developers] How to debug android project under command line?

2012-02-07 Thread Kristopher Micinski
On Tue, Feb 7, 2012 at 3:01 AM, ji fei ufo22940...@gmail.com wrote: Thanks for your link, It's really useful. I have already got 2G ram, but my eclipse got to no response always. It's no double that eclipse is great ide, i thought it's must caused by myself. I still don't know why google

Re: [android-developers] How to debug android project under command line?

2012-02-07 Thread Kostya Vasilyev
7 февраля 2012 г. 19:03 пользователь Kristopher Micinski krismicin...@gmail.com написал: By the way, 2G ram is not considered very much these days, (off topic but someone told me that android wouldn't even build on eight now..). To add to that, eclipse uses a fair amount of memory, and to

Re: [android-developers] How to debug android project under command line?

2012-02-07 Thread Kristopher Micinski
2012/2/7 Kostya Vasilyev kmans...@gmail.com 7 февраля 2012 г. 19:03 пользователь Kristopher Micinski krismicin...@gmail.com написал: By the way, 2G ram is not considered very much these days, (off topic but someone told me that android wouldn't even build on eight now..). To add to

Re: [android-developers] How to debug android project under command line?

2012-02-07 Thread John Davis
Hello Kostya, Interesting. I'm running on win7. I was expecting the eclipse icon to be a link to the .exe with some command arguments. I was going to use your options to tweak my own. However, it runs eclipse.exe without options. Does anyone have some win7 settings? Ill check your

Re: [android-developers] How to debug android project under command line?

2012-02-07 Thread John Davis
LOL. My bad. Its the settings in the .ini file. Not the command line options. NVM. On Tue, Feb 7, 2012 at 11:06 AM, John Davis davi...@gmail.com wrote: Hello Kostya, Interesting. I'm running on win7. I was expecting the eclipse icon to be a link to the .exe with some command arguments.

Re: [android-developers] How to debug android project under command line?

2012-02-07 Thread Kostya Vasilyev
Technically speaking, they are command line options, it's just that Eclipse can read them from an .ini file, which is easier to manage (and which already exists by default in the Eclipse directory). 7 февраля 2012 г. 20:08 пользователь John Davis davi...@gmail.com написал: LOL. My bad. Its the

[android-developers] How to debug android project under command line?

2012-02-06 Thread hongbosb
I really don't want to start eclipse. I have opened so much application on my computer. If the eclipse is launched, i can can almost do nothing. I heard that jdb can used to debug android project, is it efficient to use. I have used gdb before and quit like it. -- You received this message

Re: [android-developers] How to debug android project under command line?

2012-02-06 Thread Kristopher Micinski
Haha, sounds like you need more ram... :-)... Anyway, yes, jdb can be used, the interface to the android debugger is fairly high level and based on the java debugging protocol (the java wire protocol, I believe). So you should be able to attach your debugger through adb to your device..