You are on page 1of 6

CST411: Mobile Application Development Lab Class: TY [B] Roll :38

Course Coordinator: Mrs. Mrunal Deshpande Name: Latika Nandai

Experiment No.1

Aim: To install Android studio and study different Android Studio components.

Problem statement: Install Android Studio and study all components.

Questions:

1. Explain following components:


a. Steps to create new project in Android :

1. Go to a file.

2. Go to new and select new project.


3. Select an empty activity.

4. Enter name , package name, select location, language, minimum SDK.


b. Activity :
1. Empty activity :

c. activity_main.xml :
d. MainActivity.java :

e. Gradle building tool :

Gradle is a build automation tool for multi-language software development. It


controls the development process in the tasks of compilation and packaging to testing,
deployment, and publishing. Supported languages include Java (Kotlin, Groovy,
Scala), C/C++, and JavaScript.

The Android build system compiles app resources and source code, and
packages them into APKs that you can test, deploy, sign, and distribute. Android Studio
uses Gradle, an advanced build toolkit, to automate and manage the build process,
while allowing you to define flexible custom build configurations.
f. SDK :

The Android SDK (software development kit) is a set of development tools used to
develop applications for the Android platform that has become Apple’s biggest
rival in the smartphone space. The Android SDK includes the following:

Required libraries.
• Debugger.
• An emulator.
• Relevant documentation for the Android application program interfaces (APIs).
• Sample source code.
• Tutorials for the Android OS.
g. AVD :

An Android Virtual Device (AVD) is a configuration that defines the characteristics


of an Android phone, tablet, Wear OS, Android TV, or Automotive OS device that
you want to simulate in the Android Emulator. The AVD Manager is an interface
you can launch from Android Studio that helps you create and manage AVDs.

h. Execution of Android Application :

You might also like