Posts

Showing posts from 2014

Setting Up The Android Studio IDE With The JDK And SDK

Image
On the last post, i left some information about the basic tools used for Android Application Development and their download links. This time, i'm gonna show you how to set up the Android Studio IDE. The first thing to do it's to make sure we have all the tools installed and working properly, so, the first thing to verify is that the Java Development Kit it's installed correctly. Verifying the JDK Open the Command Line (CMD on Windows, Terminal on Linux) and type: "java -version", this command should give us a response like this: This response says that i have the JDK 8 Update 25, because it usually shows the most recent version installed, but i also have JDK 7u72 and 6u45 installed. If you don't have a response like this one, you need to verify that you installed correctly the JDK, some times, we need to set the System Variable called "PATH" to point to the JDK folder. Verifying the Android SDK Once we check the JDK, it's tim

Android Application Development

Image
Getting The Right Tools Android it's a very interesting and powerful mobile platform, which have been spreading all around the world since 2007. Today, we can find it everywhere, from smartphones to watches, from tv to cars, etc. For that reason, developers who target to Android development, have a really big world to explore, and we're gonna start exploring it. But, before we start developing, we need tools to do it, tools that let us design and develop those apps. From the text readed before, maybe we have a basic question: "Which Tools Do We Need?". Well, those tools are:     1-Java Development Kit (JDK)     2-Android SDK     3-An Integrated Development Enviroment (IDE) Each one have it's elemental function on the development process, so it's important to have them all installed and ready to work. The Java Development Kit (JDK) This is the elemental component that we need, because this is the component that allow us to programm u