Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Light ide for android development [closed]

Now I'm using IntelliJ Idea. But my notebook has only 2Gb RAM and Idea is very slow sometimes. I want to have little IDE for education projects. There is AIDE, which run on Android devices, but I want something like AIDE on Windows for simple coding.

like image 812
Bringoff Avatar asked Oct 31 '13 11:10

Bringoff


1 Answers

jEdit is a lightweight Java IDE, you'll need to install some plugins to use for android development. See here for a small tutorial on this: http://ashish-yadav.blogspot.nl/2012/09/android-development-using-jedit-part-1.html

But developing Android apps isn't very easy like in Eclipse or IntellijIDEA. Debugging possibilities in jEdit are not remotly as good as these two.

Note: You can use the android tools to set up a project, use any plain text editor to edit java sources and use ant to compile everything and adb to install to the emulator.

This will require some further knowledge on compilen and installing with adb manually though.

See http://developer.android.com/guide/developing/other-ide.html

I would stick with Eclipse or IntellijIdea if I were you, while slower I think you get more good than bad at the end.

Note 2: If your biggest point is the slowness of the emulator, well that's tough the emulator is slow on even the heaviest of machines. You can run a x86 system image as emulator, but I doubt your laptop will handle this.

like image 99
Timmetje Avatar answered Oct 04 '22 23:10

Timmetje