mobile development lecture 3: what is android?

15
Mobile Development Lecture 3: What is Android? Mahmoud El-Gayyar [email protected] Elgayyar.weebly.com

Upload: others

Post on 15-Oct-2021

3 views

Category:

Documents


0 download

TRANSCRIPT

Mobile Development Lecture 3: What is Android?

Mahmoud El-Gayyar [email protected]

Elgayyar.weebly.com

Mahmoud El-Gayyar / Mobile Development 2

What we are going to do?

Mahmoud El-Gayyar / Mobile Development 3

What we are going to do?

Mahmoud El-Gayyar / Mobile Development 4

What we are going to do?

Mahmoud El-Gayyar / Mobile Development 5

Key Mobile Challenges?

Low processing power

Limited RAM

Low bandwidth, high latency data connection

Impact on battery life

Dealing with different screen sizes and orientations

Mahmoud El-Gayyar / Mobile Development 6

What is Android?

Mahmoud El-Gayyar / Mobile Development 7

Android Architecture

Android OS provides

libraries for many

system features like

contacts, phone dialing,

notifications, camera,

audio, input/output, ...

Android Java code is

compiled into a special

Dalvik binary format

Mahmoud El-Gayyar / Mobile Development 8

Android Version History API

Level 1

API Level 8

API Level 21

API Level 19,20

API Level 23

Mahmoud El-Gayyar / Mobile Development 9

Android Version Distribution

Mahmoud El-Gayyar / Mobile Development 10

Android Program Components

Activity (Created in application manifest)

User visible window

Service

Background service (no UI)

Broadcast Receiver:

Receiving broadcasts from apps and system services

Content Provider:

Provide contents and data to apps

Mahmoud El-Gayyar / Mobile Development 11

Android Studio

Mahmoud El-Gayyar / Mobile Development 12

Project Structure

Mahmoud El-Gayyar / Mobile Development 13

What is Gradle?

Gradle is a sophisticated build system that lets you use a

simple, declarative DSL to configure the build process of

your app.

www.gradle.org

After building the project it uses the ADB to run the app

on the emulator or actual device

ADB Android Debug Bridge

Mahmoud El-Gayyar / Mobile Development 14

App Build Process

Mahmoud El-Gayyar / Mobile Development 15

GenyMotion Emulator