It happens that I use I am recently testing java, and I installed eclipse on my computer, it is not high performance, I decided to install the plugin to program android apps with eclipse and after finishing the installation of the jdk, when trying to make the first app, the typical hello world this message appears in the console and eclipse crashes...
What should I do then? Thank you in advance for your help.
The error it shows you is because you have a 32 bit system and you are trying to run something 64... most likely it is the android sdk...
Here you can download them.
But my recommendation is that, if you are starting out, work with Android Studio , which is currently the standard for android programming and you will not find limitations like with Eclipse.
In Eclipse, the plugin for working with Android (ADT) is not supported. The option is to use Android Studio as it is the official IDE.
Regarding your error message:
One of the causes could be incompatibility with your Android SDK, possibly you are working with Debian on a 32-bit architecture and you need 64-bit, but there is another important point, the Android SDK Build-tools 24.0.1 requires Java 8!
I suggest you check what architecture you have in your operating system, if it is 64 bit then change all references within it from
build.gradle
24.0.1 to 23.0.1 or 23.0.2.How is it being said. Eclipse is being deprecated for programming for Android. Android Studio has been used for quite some time, which is the one recommended by Google. If your operating system is 32-bit, your tools have to be 32-bit. In this case Eclipse or Android Studio. In case your system is 64-bit, it is better to use 64-bit tools, but you could use 32-bit, only you will have to install some packages in Debian. To keep things simple, if your system is 32-bit, use 32-bit tools, otherwise if it's 64-bit, use 64-bit.