Saturday, 4 March 2017

Faster Android development

Answer


Answer





I have noted that in my computer Android and Eclipse are very slow. I agree that my computer has not very much memory but I was wondering is there any lightweight version of the emulator and is there some lighter IDE than Eclipse which supports Android development and Android debugger?


Answer




is there any lightweight version of the emulator




No.





is there some lighter IDE than Eclipse which supports Android development and Android debugger




Short answer: no. But, 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.



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


No comments:

Post a Comment

c++ - Does curly brackets matter for empty constructor?

Those brackets declare an empty, inline constructor. In that case, with them, the constructor does exist, it merely does nothing more than t...