I have an Android application developed in Eclipse. I know I can compile and run a project from the console , however I do not know how to do this.
The basic steps for compiling a program JAVA
is to save with the same class name followed by .java
and execute the following command:
#javac HelloWordConsole.java
But I want to run this process to create .apk
and install it directly to the device via USB. How can I do this using Windows CMD for both the Eclipse IDE and Android Studio?