7

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?

jmlane
  • 2,109
  • 1
  • 16
  • 24
Fcoder
  • 9,066
  • 17
  • 63
  • 100
  • This is possibly a duplicate of: http://stackoverflow.com/questions/2432812/how-to-set-up-android-sdk-for-command-line-development-on-linux and: http://stackoverflow.com/questions/7538649/text-command-line-based-java-ide?rq=1 – Gerome Bochmann Dec 07 '14 at 11:11

4 Answers4

4

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.

kgiannakakis
  • 103,016
  • 27
  • 158
  • 194
1

see the link managing project through command line

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

Chandra Sekhar
  • 18,914
  • 16
  • 84
  • 125
1

If you want speed, you should buy a faster computer.

It seems that you are a beginner -> I would suggest purchasing almost any java book, or visiting websites with tutorials, if you are at the stage where you don't know how to compile your code.

Rahul Iyer
  • 19,924
  • 21
  • 96
  • 190
  • You're not addressing any of the questions by OP. The question was how to develop android using the command line and a lightweight editor. Instead, you're making assumptions about OPs budget as well as their level of expertise and provide answers to problems you think are relevant. This is not helpful. – Gerome Bochmann Dec 07 '14 at 10:56
1

well, nothing holds you back to use notepad and manually compiling with javac:

http://docs.oracle.com/javase/1.4.2/docs/tooldocs/windows/javac.html

Like kgiannakakis pointed out; you'll also need the Android SDK:

http://developer.android.com/sdk/index.html

Tom
  • 4,096
  • 2
  • 24
  • 38