Slide 2
Slide 2
Slide 2
You can develop Android applications on your own computer. The steps below will guide you on
downloading, installing, and configuring the needed tools. Note: The screenshots below were taken on
a Windows machine, but the instructions also apply to systems running Linux or OS X.
https://developer.android.com/studio/index.html
Click “Download Android Studio”, accept the terms and conditions, and proceed with the download.
The download might take a while, as it is about 700 MB. Run the installer after the download is finished.
2. Install Android Studio
When running the installer, we recommend using the default values, as shown below. Once installed,
Android Studio will run, and launch a setup wizard to download additional components.
Accept the recommended RAM size for the emulator, and click “Next” to see a summary of the
components to be downloaded. The additional components total about 1.8 GB in size.
When the download begins, the progress bar might appear to freeze, but do not worry -- the download
is progressing. Once installation is complete, click “Finish”.
4. Begin Developing
With Android Studio installed, you may now develop Android applications. From here, you can
continue with other course guides, tutorials, or exercises.
Create a project
Android Studio makes it easy to create Android apps for various form factors, such
as handsets, tablets, TV, and Wear devices.
This page shows you how to start a new Android app project or import an existing
project.
If you don't have a project opened, Android Studio shows the Welcome screen,
where you can create a new project by clicking Start a new Android Studio
project.
If you do have a project opened, you start creating a new project by selecting File >
New > New Project from the main menu.
You should then see the Create New Project wizard, which lets you choose the type
of project you want to create and populates with code and resources to get you
started. This page guides you through creating a new project using the Create New
Project wizard.
Figure 1. In the first screen of the wizard, choose the type of project you want to create.
By selecting the type of project you want to create, Android Studio can include
sample code and resources to help you get started.
Android Studio creates your new project with some basic code and resources to get
you started.
Android Studio then opens the project in a new IDE window and indexes its contents.
If you are importing a project from version control, use the File > New > Project
from Version Control menu.
When Google Play receives one of these requests for an instant app or game, it
sends the necessary files to the Android device that sent the request. The device
then runs the app or game.
Android Jetpack
Jetpack is a suite of libraries, tools, and guidance to help developers write high-
quality apps easier. These components help you follow best practices and simplify
complex tasks, so you can focus on the code you care about.
Jetpack comprises the androidx.* package libraries. This means that it offers
backward compatibility and is updated more frequently than the Android platform,
making sure you always have access to the latest and greatest versions of the
Jetpack components.
AndroidX
AndroidX is the open-source project that the Android team uses to develop, test,
package, version and release libraries within Jetpack.
AndroidX is a major improvement to the original Android Support Library. Like the
Support Library, AndroidX provides backwards-compatibility across Android
releases. AndroidX fully replaces the Support Library by providing feature and new
libraries.