SlideShare a Scribd company logo
INTRODUCTION TO ANDROID
By:
Dipali Badgujar
Introduction to Android
Introduction:
• One of the most widely used mobile OS these days
is ANDROID.
• Android is a software bunch comprising not only
operating system but also middleware and key
applications.
History:
• Android Inc. was founded in Palo Alto of California, U.S. by
Andy Rubin, Rich miner, Nick sears and Chris White in 2003.
• Later Android Inc. was acquired by Google in 2005.
• Open HandSet Alliances formed Google , HTC , Motorola ,
Qualcomm , T- Mobile in 2007.
• Android is the first OHS product.
• After original release there have been number of updates in the
original version of Android.
OHA Companies:
Versions:
• Do you notice that this versions have been released in
alphabetical order and on desserts name?
 Released Date :
2008 Sep, 23
 Download and updates via
Android Market, Web
Browser, Camera support,
Gmail, Contacts and Google
Agenda synchronization,
Google Maps, YouTube
application.
ANDROID 1.0 APPLE PIE/ALPHA
 Released Date:
2009 Feb 9
 "Show" & "Hide" numeric
keyboard, in caller
application.
 Ability to save MMS
attachments.
ANDROID 1.1 BANANA
BREAD/BETA
 Released Date:
2009 Apr , 30
 Bluetooth A2DP, AVRCP
support
 Soft-keyboard with text-
prediction
Record/watch videos
ANDROID 1.5 CUPCAKE
 Released Date:
2009 Sep , 15
 Gesture framework
 Turn-by-turn navigation
ANDROID 1.6 DONUT
 Released Date:
2009 Oct, 26
 HTML
 Digital zoom
 Microsoft Exchange
support
 Bluetooth 2.1
 Live Wallpapers
 Updated UI
ANDROID 2.0 ECLAIR
 Released Date:
2010 May, 20
 Speed improvements
 JIT implementation
 USB Tethering
 Applications installation to
the expandable memory
 Upload file support in the
browser
 Animated GIFs
ANDROID 2.2 FROYO
 Released Date:
2010 Dec, 06
 Updated UI
 Improved keyboard ease of
use
 Improved power
management
 Improved copy/paste
 Social networking features
 Near Field Communication
support
 Native VoIP/SIP support
 Video call support
ANDROID 2.3 GINGERBREAD
 Released Date:
2011 Sep, 20
 Android Market updates
including easier automatic
updates
 Google Books updates
 Wi-Fi improvements
 Chinese handwriting
prediction improved
ANDROID 3.0 HONEYCOMB
 Released Date:
2011 Oct, 18
 New lock screen actions
 Improved text input and
spell-checking
 Control over network data
 Email app supports EAS
v14
 WI-FI direct
 Bluetooth Health Device
Profile
ANDROID 4.0 ICE CREAM
SANDWICH
 Released Date:
2012 Jul,09
 Voice Search
 Speed enhancements
 Camera app improvements
 Accessibility: gesture mode,
enable braille external
keyboards...
ANDROID 4.1 JELLY BEAN
 Released Date:
2013 Oct, 31
 Screen recording
 New Translucent system
UI
 Enhanced notification
access
System-wide
 Performance
improvements
ANDROID 4.4 KITKAT
 Released Date:
2014 Oct, 17
 New design (Material
design)
 Speed improvement
 Battery consumption
improvement
ANDROID 5.0 LOLLIPOP
 Released Date:
2015 Oct, 05
 USB Type-C support
 Fingerprint Authentication
support
 Better battery life with
"deep sleep“
 Permissions dashboard
 Android Pay
 MIDI support
 Google Now
improvements
ANDROID 6 MARSHMALLOW
Architecture:
1. Activity Manager – Controls all aspects of the application lifecycle
and activity stack.
2. Content Providers – Allows applications to publish and share
data with other applications.
3. Resource Manager – Provides access to non-code embedded
resources such as strings, color settings and user interface layouts.
4. Notifications Manager – Allows applications to display alerts and
notifications to the user.
5. View System – An extensible set of views used to create application
user interfaces.
6. Package Manager – The system by which applications are able to
find out information about other applications currently installed on the
device.
7. Telephony Manager – Provides information to the application about
the telephony services available on the device such as status and
subscriber information.
8. Location Manager – Provides access to the location services allowing
an application to receive updates about location changes.
Architectural Framework:
1. android.app − Provides access to the application model and is the
cornerstone of all Android applications.
2. android.content − Facilitates content access, publishing and
messaging between applications and application components.
3. android.database − Used to access data published by content
providers and includes SQLite database management classes.
4. android.opengl − A Java interface to the OpenGL ES 3D graphics
rendering API.
5. android.os − Provides applications with access to standard
operating system services including messages, system services and
inter-process communication.
6. android.text − Used to render and manipulate text on a device
display.
7. android.view − The fundamental building blocks of application user
interfaces.
8. android.widget − A rich collection of pre-built user interface
components such as buttons, labels, list views, layout managers,
radio buttons etc.
9. android.webkit − A set of classes intended to allow web-browsing
capabilities to be built into applications.
Libraries:
 This section provides a key component called Dalvik Virtual
Machine which is a kind of Java Virtual Machine specially
designed and optimized for Android.
 The Dalvik VM makes use of Linux core features like memory
management and multi-threading, which is intrinsic in the Java
language.
 The Dalvik VM enables every Android application to run in its
own process, with its own instance of the Dalvik virtual machine.
 The Android runtime also provides a set of core libraries which
enable Android application developers to write Android
applications using standard Java programming language.
Android Runtime:
 At the bottom of the layers is Linux - Linux 3.6 with
approximately 115 patches. This provides a level of abstraction
between the device hardware and it contains all the essential
hardware drivers like camera, keypad, display etc.
 Also, the kernel handles all the things that Linux is really good
at such as networking and a vast array of device drivers, which
take the pain out of interfacing to peripheral hardware.
Applications:
You will find all the Android application at the top layer. You will write
your application to be installed on this layer only. Examples of such
applications are Contacts Books, Browser, Games etc.
Linux Kernel And Applications:
1. Install the JDK
2. Download and install the Eclipse for
developing android application
3. Download and Install the android SDK
4. Install the ADT plugin for eclipse
5. Configure the ADT plugin
6. Create the AVD
7. Create the hello android application
Installation Steps:
• All applications written in Java and
converted to the dalvik executable .dex
• Every android app runs its own process,
with its own instance of the dalvik virtual
machine
• Not a traditional JVM, but a custom VM
designed to run multiple instances
efficiently on a single device
• VM uses Linux kernel to handle low-level
functionality incl. security, threading,
process and memory management
Dalvik VM:
like the
web.xml file
in Java EE
Android Core Building Blocks:
 Android Emulator is used
to run, debug and test the
android application.
 If you don't have the real
device, it can be the best way
to run, debug and test the
application.
 It uses an open source
processor emulator technology
called QEMU.
Android Emulator:
1. http://www.tutorialspoint.com/android/android_architecture
.htm
2. http://www.javatpoint.com/android-core-building-blocks
3. http://www.javatpoint.com/how-to-setup-android-for-
eclipse-ide
4. http://www.techotopia.com/index.php/An_Overview_of_the
_Android_Architecture#The_Linux_Kernel
References:

More Related Content

PPTX
Android Operating System
PPT
android phone ppt
PPSX
Android OS and its Features
PPTX
Android OS by Prasad & Sarang
PPTX
PPTX
History of android os from 1.0 to 9.0 pie
PPTX
Android PPT Presentation 2018
PPTX
Android OS PPT
Android Operating System
android phone ppt
Android OS and its Features
Android OS by Prasad & Sarang
History of android os from 1.0 to 9.0 pie
Android PPT Presentation 2018
Android OS PPT

What's hot (20)

PPTX
ppt on Android os- vinit
PPT
Android OS
PPT
Versions of android
PPTX
Android operating system
PPTX
Versions of Android OS
PPTX
Android operating system by udayan thakurdesai
PPTX
ANDROID MOBILE OPERATING SYSTEM
PPTX
My presentation on Android in my college
PPTX
Android app development
PPTX
Android technology prepared by Hritika Raj (Shivalik college of engg.)
PPTX
Android OS Presentation
PPTX
Android app development ppt
PPTX
android architecture
PDF
Android
PPSX
Android versions A to L
PPT
Android ppt
PPT
Android architecture
PDF
Android Platform Architecture
PPT
Introduction to Android, Architecture & Components
PPT
Android ppt
ppt on Android os- vinit
Android OS
Versions of android
Android operating system
Versions of Android OS
Android operating system by udayan thakurdesai
ANDROID MOBILE OPERATING SYSTEM
My presentation on Android in my college
Android app development
Android technology prepared by Hritika Raj (Shivalik college of engg.)
Android OS Presentation
Android app development ppt
android architecture
Android
Android versions A to L
Android ppt
Android architecture
Android Platform Architecture
Introduction to Android, Architecture & Components
Android ppt
Ad

Viewers also liked (7)

TXT
Bernie chua
TXT
Quest Of The Leader
PPT
INSIGNIA ARGUEDAS PPT
PPT
Festival of Children and Youth with disabilities "Believe in yourself" / Фест...
PDF
Modern power system [simulink & m file]
DOCX
Contoh kisi dan soal uts matematika kelas 3 semester 2
PPTX
Marketing your library service
Bernie chua
Quest Of The Leader
INSIGNIA ARGUEDAS PPT
Festival of Children and Youth with disabilities "Believe in yourself" / Фест...
Modern power system [simulink & m file]
Contoh kisi dan soal uts matematika kelas 3 semester 2
Marketing your library service
Ad

Similar to Introduction to Android (20)

PPTX
Android ppt
PPTX
Introduction to Android ppt
PPTX
Android OS
PDF
Android : Architecture & Components
PPTX
Presentation1
PPTX
PPT on Android
PPTX
mobile-application_develop_android_MOD1.pptx
PDF
Android and its feature
PPTX
Android
PDF
PRESENTATION ON ANDROID
PPTX
Knowledge about android operating system
PPTX
Project a day 1 introduction to android
PPTX
Android - An Operating System
PPTX
Introduction to android
PPT
Android Application Development Training by NITIN GUPTA
PPTX
Android
PPT
Android App Developement
PPTX
Android icecream sandwich
PPTX
Android OS 2019
PPTX
Unit-1.1 Getting Started with Android.pptx
Android ppt
Introduction to Android ppt
Android OS
Android : Architecture & Components
Presentation1
PPT on Android
mobile-application_develop_android_MOD1.pptx
Android and its feature
Android
PRESENTATION ON ANDROID
Knowledge about android operating system
Project a day 1 introduction to android
Android - An Operating System
Introduction to android
Android Application Development Training by NITIN GUPTA
Android
Android App Developement
Android icecream sandwich
Android OS 2019
Unit-1.1 Getting Started with Android.pptx

Recently uploaded (20)

PDF
Mitigating Risks through Effective Management for Enhancing Organizational Pe...
PDF
Automation-in-Manufacturing-Chapter-Introduction.pdf
PPTX
MET 305 2019 SCHEME MODULE 2 COMPLETE.pptx
PPTX
MCN 401 KTU-2019-PPE KITS-MODULE 2.pptx
PPTX
bas. eng. economics group 4 presentation 1.pptx
PPT
CRASH COURSE IN ALTERNATIVE PLUMBING CLASS
PPTX
UNIT-1 - COAL BASED THERMAL POWER PLANTS
PDF
PPT on Performance Review to get promotions
PPTX
Engineering Ethics, Safety and Environment [Autosaved] (1).pptx
PPTX
M Tech Sem 1 Civil Engineering Environmental Sciences.pptx
PPTX
Geodesy 1.pptx...............................................
PDF
PRIZ Academy - 9 Windows Thinking Where to Invest Today to Win Tomorrow.pdf
PPTX
CARTOGRAPHY AND GEOINFORMATION VISUALIZATION chapter1 NPTE (2).pptx
PPTX
UNIT 4 Total Quality Management .pptx
PPTX
Infosys Presentation by1.Riyan Bagwan 2.Samadhan Naiknavare 3.Gaurav Shinde 4...
PDF
Enhancing Cyber Defense Against Zero-Day Attacks using Ensemble Neural Networks
PPTX
web development for engineering and engineering
PPTX
Foundation to blockchain - A guide to Blockchain Tech
PDF
TFEC-4-2020-Design-Guide-for-Timber-Roof-Trusses.pdf
PDF
SM_6th-Sem__Cse_Internet-of-Things.pdf IOT
Mitigating Risks through Effective Management for Enhancing Organizational Pe...
Automation-in-Manufacturing-Chapter-Introduction.pdf
MET 305 2019 SCHEME MODULE 2 COMPLETE.pptx
MCN 401 KTU-2019-PPE KITS-MODULE 2.pptx
bas. eng. economics group 4 presentation 1.pptx
CRASH COURSE IN ALTERNATIVE PLUMBING CLASS
UNIT-1 - COAL BASED THERMAL POWER PLANTS
PPT on Performance Review to get promotions
Engineering Ethics, Safety and Environment [Autosaved] (1).pptx
M Tech Sem 1 Civil Engineering Environmental Sciences.pptx
Geodesy 1.pptx...............................................
PRIZ Academy - 9 Windows Thinking Where to Invest Today to Win Tomorrow.pdf
CARTOGRAPHY AND GEOINFORMATION VISUALIZATION chapter1 NPTE (2).pptx
UNIT 4 Total Quality Management .pptx
Infosys Presentation by1.Riyan Bagwan 2.Samadhan Naiknavare 3.Gaurav Shinde 4...
Enhancing Cyber Defense Against Zero-Day Attacks using Ensemble Neural Networks
web development for engineering and engineering
Foundation to blockchain - A guide to Blockchain Tech
TFEC-4-2020-Design-Guide-for-Timber-Roof-Trusses.pdf
SM_6th-Sem__Cse_Internet-of-Things.pdf IOT

Introduction to Android

  • 3. Introduction: • One of the most widely used mobile OS these days is ANDROID. • Android is a software bunch comprising not only operating system but also middleware and key applications.
  • 4. History: • Android Inc. was founded in Palo Alto of California, U.S. by Andy Rubin, Rich miner, Nick sears and Chris White in 2003. • Later Android Inc. was acquired by Google in 2005. • Open HandSet Alliances formed Google , HTC , Motorola , Qualcomm , T- Mobile in 2007. • Android is the first OHS product. • After original release there have been number of updates in the original version of Android.
  • 6. Versions: • Do you notice that this versions have been released in alphabetical order and on desserts name?
  • 7.  Released Date : 2008 Sep, 23  Download and updates via Android Market, Web Browser, Camera support, Gmail, Contacts and Google Agenda synchronization, Google Maps, YouTube application. ANDROID 1.0 APPLE PIE/ALPHA
  • 8.  Released Date: 2009 Feb 9  "Show" & "Hide" numeric keyboard, in caller application.  Ability to save MMS attachments. ANDROID 1.1 BANANA BREAD/BETA
  • 9.  Released Date: 2009 Apr , 30  Bluetooth A2DP, AVRCP support  Soft-keyboard with text- prediction Record/watch videos ANDROID 1.5 CUPCAKE
  • 10.  Released Date: 2009 Sep , 15  Gesture framework  Turn-by-turn navigation ANDROID 1.6 DONUT
  • 11.  Released Date: 2009 Oct, 26  HTML  Digital zoom  Microsoft Exchange support  Bluetooth 2.1  Live Wallpapers  Updated UI ANDROID 2.0 ECLAIR
  • 12.  Released Date: 2010 May, 20  Speed improvements  JIT implementation  USB Tethering  Applications installation to the expandable memory  Upload file support in the browser  Animated GIFs ANDROID 2.2 FROYO
  • 13.  Released Date: 2010 Dec, 06  Updated UI  Improved keyboard ease of use  Improved power management  Improved copy/paste  Social networking features  Near Field Communication support  Native VoIP/SIP support  Video call support ANDROID 2.3 GINGERBREAD
  • 14.  Released Date: 2011 Sep, 20  Android Market updates including easier automatic updates  Google Books updates  Wi-Fi improvements  Chinese handwriting prediction improved ANDROID 3.0 HONEYCOMB
  • 15.  Released Date: 2011 Oct, 18  New lock screen actions  Improved text input and spell-checking  Control over network data  Email app supports EAS v14  WI-FI direct  Bluetooth Health Device Profile ANDROID 4.0 ICE CREAM SANDWICH
  • 16.  Released Date: 2012 Jul,09  Voice Search  Speed enhancements  Camera app improvements  Accessibility: gesture mode, enable braille external keyboards... ANDROID 4.1 JELLY BEAN
  • 17.  Released Date: 2013 Oct, 31  Screen recording  New Translucent system UI  Enhanced notification access System-wide  Performance improvements ANDROID 4.4 KITKAT
  • 18.  Released Date: 2014 Oct, 17  New design (Material design)  Speed improvement  Battery consumption improvement ANDROID 5.0 LOLLIPOP
  • 19.  Released Date: 2015 Oct, 05  USB Type-C support  Fingerprint Authentication support  Better battery life with "deep sleep“  Permissions dashboard  Android Pay  MIDI support  Google Now improvements ANDROID 6 MARSHMALLOW
  • 21. 1. Activity Manager – Controls all aspects of the application lifecycle and activity stack. 2. Content Providers – Allows applications to publish and share data with other applications. 3. Resource Manager – Provides access to non-code embedded resources such as strings, color settings and user interface layouts. 4. Notifications Manager – Allows applications to display alerts and notifications to the user. 5. View System – An extensible set of views used to create application user interfaces. 6. Package Manager – The system by which applications are able to find out information about other applications currently installed on the device. 7. Telephony Manager – Provides information to the application about the telephony services available on the device such as status and subscriber information. 8. Location Manager – Provides access to the location services allowing an application to receive updates about location changes. Architectural Framework:
  • 22. 1. android.app − Provides access to the application model and is the cornerstone of all Android applications. 2. android.content − Facilitates content access, publishing and messaging between applications and application components. 3. android.database − Used to access data published by content providers and includes SQLite database management classes. 4. android.opengl − A Java interface to the OpenGL ES 3D graphics rendering API. 5. android.os − Provides applications with access to standard operating system services including messages, system services and inter-process communication. 6. android.text − Used to render and manipulate text on a device display. 7. android.view − The fundamental building blocks of application user interfaces. 8. android.widget − A rich collection of pre-built user interface components such as buttons, labels, list views, layout managers, radio buttons etc. 9. android.webkit − A set of classes intended to allow web-browsing capabilities to be built into applications. Libraries:
  • 23.  This section provides a key component called Dalvik Virtual Machine which is a kind of Java Virtual Machine specially designed and optimized for Android.  The Dalvik VM makes use of Linux core features like memory management and multi-threading, which is intrinsic in the Java language.  The Dalvik VM enables every Android application to run in its own process, with its own instance of the Dalvik virtual machine.  The Android runtime also provides a set of core libraries which enable Android application developers to write Android applications using standard Java programming language. Android Runtime:
  • 24.  At the bottom of the layers is Linux - Linux 3.6 with approximately 115 patches. This provides a level of abstraction between the device hardware and it contains all the essential hardware drivers like camera, keypad, display etc.  Also, the kernel handles all the things that Linux is really good at such as networking and a vast array of device drivers, which take the pain out of interfacing to peripheral hardware. Applications: You will find all the Android application at the top layer. You will write your application to be installed on this layer only. Examples of such applications are Contacts Books, Browser, Games etc. Linux Kernel And Applications:
  • 25. 1. Install the JDK 2. Download and install the Eclipse for developing android application 3. Download and Install the android SDK 4. Install the ADT plugin for eclipse 5. Configure the ADT plugin 6. Create the AVD 7. Create the hello android application Installation Steps:
  • 26. • All applications written in Java and converted to the dalvik executable .dex • Every android app runs its own process, with its own instance of the dalvik virtual machine • Not a traditional JVM, but a custom VM designed to run multiple instances efficiently on a single device • VM uses Linux kernel to handle low-level functionality incl. security, threading, process and memory management Dalvik VM:
  • 27. like the web.xml file in Java EE Android Core Building Blocks:
  • 28.  Android Emulator is used to run, debug and test the android application.  If you don't have the real device, it can be the best way to run, debug and test the application.  It uses an open source processor emulator technology called QEMU. Android Emulator:
  • 29. 1. http://www.tutorialspoint.com/android/android_architecture .htm 2. http://www.javatpoint.com/android-core-building-blocks 3. http://www.javatpoint.com/how-to-setup-android-for- eclipse-ide 4. http://www.techotopia.com/index.php/An_Overview_of_the _Android_Architecture#The_Linux_Kernel References: