Can I use the Android SDK without using eclipse?

I would like to develop for Android, but I do not really like using the IDE for programming, because I find them rather cumbersome compared to a text editor and console. Is there a way I can develop for Android without this in Eclipse and use Gedit instead? The system requirements listed on the Eclipse Android Developers list are a requirement, but I wonder if anyone found a way to manually connect to the SDK libraries outside of Eclipse. I am using the Linux installation as my development window.

+3
source share
2 answers

You do not need to use Eclipse, it is highly recommended because the tools are well integrated:

The recommended development method for an Android application is to use Eclipse with the ADT plugin. The ADT plugin provides editing, creation, debugging, and .apk packaging and signing functionality integrated into the IDE.

However, if you prefer applications in another IDE, such as IntelliJ, or in a base editor, such as Emacs, you can do this. The SDK includes all the tools necessary to set up an Android project, create it, debug it, and then distribute it. This document is your guide to using these tools.

See this page in the Dev manual for more information: Development in other IDEs

+6

, SDK Ant ( JDK, ). , relearning Ant, " " .

, , , , . , Eclipse .

+3

Source: https://habr.com/ru/post/1772862/


All Articles