Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android development with notepad-like editor and command line

I have a problem with Eclipse. It is very slow for me. My PC is an old PC and I'm not comfort with the performance. Is there any lightweight alternative to Eclipse (Available for Windows and Linux)? I want SPEED!

My ideal is to write my code in an editor like Notepad and supplement with the command line! How can I compile my code in this environment? How do I update my R.java file or build my project's configuration?

like image 968
Fcoder Avatar asked Apr 09 '12 12:04

Fcoder


2 Answers

The documentation provides very nice instructions about using the command line tool. The building is performed with the aid of Ant tool. You could also use a more advanced editor than notepad (Notepad++ for example).

However, if you have a slow machine, you would suffer during development anyway. You should also forget about using the emulator for debugging. The emulator would take ages to load.

like image 180
kgiannakakis Avatar answered Sep 27 '22 16:09

kgiannakakis


see the link managing project through command line

It provides a brief description about how to develop android app without any IDE

like image 22
Chandra Sekhar Avatar answered Sep 27 '22 18:09

Chandra Sekhar