0% found this document useful (0 votes)
87 views

Android Development Slides Lec 02 GCUF

The document discusses key tools and concepts for mobile and Android application development. It describes the Java Development Kit (JDK) which allows developers to create Java programs that can be run by the Java Virtual Machine (JVM) and Runtime Environment (JRE). It also discusses the Android SDK Manager which is a command line tool for installing, updating, and uninstalling Android SDK packages including libraries, emulators, and documentation. Finally, it provides information on configuring the Android SDK Manager to select and install relevant tools and platforms for a project.

Uploaded by

code with joey
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
87 views

Android Development Slides Lec 02 GCUF

The document discusses key tools and concepts for mobile and Android application development. It describes the Java Development Kit (JDK) which allows developers to create Java programs that can be run by the Java Virtual Machine (JVM) and Runtime Environment (JRE). It also discusses the Android SDK Manager which is a command line tool for installing, updating, and uninstalling Android SDK packages including libraries, emulators, and documentation. Finally, it provides information on configuring the Android SDK Manager to select and install relevant tools and platforms for a project.

Uploaded by

code with joey
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 14

Mobile and Application

Development

Lecture # 02

M. Javed Iqbal
JAVA JDK
The Java Development Kit (JDK) is one
of three core technology packages used
in Java programming, along with the
JVM (Java Virtual Machine) and the JRE
(Java Runtime Environment). The JDK
allows developers to create Java
programs that can be executed and run
by the JVM and JRE.

www.oracle.com/technetwork/java/javase/downloads/index.html
Android SDK Manager
SDK stands for software development
kit. Also known as a devkit, the SDK is a
set of software-building tools for a
specific platform, including the building
blocks, debuggers and, often, a
framework or group of code libraries
such as a set of routines specific to an
operating system (OS).
The sdk manager is a command line tool
that allows you to view, install, update,
and uninstall packages for the Android
SDK. The Android SDK contains a
debugger, libraries, an emulator,
documentation, sample code,
and tutorials.

http://developer.android.com/sdk/index.html
Installing the Android SDK Tools
SDK stands for software development
kit. Also known as a devkit, the SDK is a
set of software-building tools for a
specific platform, including the building
blocks, debuggers and, often, a
framework or group of code libraries
such as a set of routines specific to an
operating system (OS).
Configuring the Android SDK Manager
The Android SDK Manager manages the
various versions of the Android SDK
currently installed
on your computer. When it is launched,
you will see a list of items and whether
or not they are currently installed on
your computer.
Configuring the Android SDK Manager
Check the relevant tools, documentation,
and platforms you need for your project.
Once you have selected the items you
want, click the Install button to download
them. Because it takes a while to
download from Google’s server, it is a
good idea to download only what you
need immediately, and download the rest
when you have more time.
What is API?
API stands for application programming
interface. It allows two applications to
communicate with one another to access
data. Every action you take on your
phone, like sending a direct message or
checking the score of the baseball game,
uses an API to access and deliver that
information.
When all the packages are installed, you will be
asked to restart the ADB (Android Debug Bridge).
Click Yes.

You might also like