SlideShare ist ein Scribd-Unternehmen logo
1 von 35
WHAT IS ANDROID?
• It is a open source software platform and operating system for mobile
devices
• Based on the Linux kernel
• Developed by Google and later the Open Handset Alliance (OHA)
• Allows writing managed code in the Java language
• Android has its own virtual machine i.e. DVM(Dalvik Virtual
Machine),which is used for executing the android applicatn.
• Google purchased the initial developer of the software , android
incorporated in 2005.
• Provides platform for developing apps & marketplace for distribution.
 Android was designed as a platform for software development.
 Android is open source.
 Android is free.
 Community support.
 Tool support.
Why Android ?
HISTORY OF ANDROID
 Android Inc. founded in Palo Alto, California, united states in October 2003 by
Andy Rubin[co-founder of danger ], rich miner[co-founder of wildfire
communication Inc.], nick sears[once VP at T-Mobile], and Chris white[headed
design and interface development at web TV] to develop.
 Andy Rubin was developed android in the year 2003-2005 with Google support
and same company took Android in August 2005.
 In 2008 the first Android device is launched, that is HTC Dream G1 which
operates Android 1.0
Key features of Android
 Storage
 Connectivity
 Messaging
 Multiple languages
 Web browser
 Java support
 Media support
 Supports SSL(TLS)
 Streaming media support
 Additional hardware support
 Multi-touch
LINUX KERNEL
•The architecture is based on the Linux2.6 kernel.
• This layer is core of android architecture. It provides
service like power management, memory management,
security etc.
• It helps in software or hardware binding for better
communication.
NATIVE LIBRARIES
• Android has its own libraries, which is written in
C/C++. These libraries cannot be accessed directly.
With the help of application framework, we can access
these libraries. There are many libraries like web
libraries to access web browsers, libraries for android
and video formats etc.
Android Run Time
• The Android Runtime was designed specifically for
Android to meet the needs of running in an embedded
environment where you have limited battery, limited
memory, limited CPU.
• Dalvik is the process virtual machine in Google's
android operating system. It is the software that runs the
apps on android devices. Dalvik is thus an integral part
of android ,which is typically used on mobile devices
such as mobile phones and tablet computers.
• Programs are commonly written in java and compiled to
byte code.
Android Run Time
•This is in blue, meaning that it's written in
the Java programming language.
•The core library contains all of the collection
classes, utilities, IO, all the utilities and tools
that you’ve come to expected to use.
Application Framework
•This is all written in a Java programming language and
the application framework is the toolkit that all
applications use.
•These applications include the ones that come with a
phone like the home applications, or the phone
application.
•It includes applications written by Google, and it
includes apps that will be written by you.
•So, all apps use the same framework and the same
APIs.
Contd…
These are as follows:-
• Activity manager:-It manages the lifecycle of applications. It enable
proper management of all the activities. All the activities are
controlled by activity manager.
• Resource manager:-It provides access to non-code resources such as
graphics etc.
• Notification manager:-It enables all applications to display custom
alerts in status bar.
• Location manager:- It fires alerts when user enters or leaves a
specified geographical location.
• Package manager:-It is use to retrieve the data about installed
packages on device.
• Window manager:-It is use to create views and layouts.
• Telephony manager:-It is use to handle settings of network
connection and all information about services on device.
APPLICATION LAYER
•the final layer on top is Applications.
•It includes the home application the contacts
application , the browser, and apps.
•It is the most upper layer in android architecture.
•All the applications like camera, Google maps,
browser,sms,calendars,contacts are native applications.
These applications works with end user with the help of
application framework to operate.
A number of well-recognized mobile operating systems are available in
the market in both proprietary and open-source categories. Most widely
used mobile operating systems are −
•Android
•IOS
•BlackBerry
•Windows
resources
Manifest
Un-compiled
resources
Android Versions ?
Code name Version number Initial release date API level
Alpha 1.0 September 23, 2008 1
Beta 1.1 February 9, 2009 2
Cupcake 1.5 April 27, 2009 3
Donut 1.6 September 15, 2009 4
Éclair 2.0 – 2.1 October 26, 2009 5 – 7
Froyo 2.2 – 2.2.3 May 20, 2010 8
Gingerbread 2.3 – 2.3.7 December 6, 2010 9 – 10
Honeycomb 3.0 – 3.2.6 February 22, 2011 11 – 13
Ice Cream Sandwich 4.0 – 4.0.4 October 18, 2011 14 – 15
Jelly Bean 4.1 – 4.3.1 July 9, 2012 16 – 18
KitKat 4.4 – 4.4.4 October 31, 2013 19 – 20
Lollipop 5.0 – 5.1.1 November 12, 2014 21 – 22
Marshmallow 6.0 – 6.0.1 October 5, 2015 23
Nougat 7.0 August or September 2016 24
A software development kit (SDK or "devkit") is
typically a set of software development tools that allows
the creation of applications for a certain software
package, software framework, hardware platform,
computer system, video game console, operating
system, or similar development platform.
What is SDK?
What is JDK ?
 The Java Development Kit (JDK) is a software development environment
used for developing Java applications and applets. It includes the Java
Runtime Environment (JRE), an interpreter/loader (java), a compiler (javac),
an archiver (jar), a documentation generator (javadoc) and other tools
needed in Java development.
Android Studio
 Official IDE for Android application development.
 Based on JetBrains’ IntelliJ IDEA software
 Available on Windows, Linux, Mac.
 Android Studio vs. Eclipse ADT comparison
Feature Android Studio Eclipse ADT Eclipse AndMore
Build system Graldle Apache Ant Gradle/Maven/Ant
Maven-based build
dependencies
Yes No Yes
Build variants and
multiple-APK generation
Yes No ?
Advanced Android code
Complition and
refactoring
Yes Yes ?
Graphical layout editor Yes Yes Yes
APK signing and
keystore management
Yes Yes Yes
NDK support Yes Yes Yes
Windows OS X Linux
OS version
Microsoft Windows 10/8/7 (32-
or 64-bit)
Mac OS X 10.8.5 or higher, up to
10.11.4 (El Capitan)
GNOME or KDE desktop
RAM 2 GB RAM minimum, 8 GB RAM recommended
Disk space
500 MB disk space for Android Studio, at least 1.5 GB for Android SDK, emulator system images,
and caches
Java version Java Development Kit (JDK) 8 Java Development Kit (JDK) 6 Java Development Kit (JDK) 8
Screen resolution 1280x800 minimum screen resolution
System requirements
Version 2.x
Oops !
App components
Activities
Services
Content providers
Broadcast Receivers
app/src/main/java/com.example.myfirstapp/MainActivity.java
app/src/main/res/layout/activity_main.xml
app/src/main/AndroidManifest.xml
Developing
Android
Application
Storage Options
Shared Preferences
Internal Storage
External Storage
SQLite Databases
Network Connection
SQLite database
Light-weight data interchange format.
Language independent.
Collection of name/value pairs
PhoneGap
Virtual reality/daydream
firebase
Google to train 2 mn developers in Android
Tech giant Google aims to train about 2 million
developers in India on its Android platform over the
next three years to cash in on the high-quality talent
pool in the country.
India, which has about one million people working on
solutions for the Android mobile platform, is poised to
become home to about 4 million developers by 2018,
making it the worlds largest developer base.
Associate Android Developer Certification
THANK
YOU

Weitere ähnliche Inhalte

Was ist angesagt?

Introduction to Android - Seminar
Introduction to Android - SeminarIntroduction to Android - Seminar
Introduction to Android - SeminarAkshay Sharma
 
Android Web app
Android Web app Android Web app
Android Web app Sumit Kumar
 
Android tutorial
Android tutorialAndroid tutorial
Android tutorialmaster760
 
Introduction to Android and Android Studio
Introduction to Android and Android StudioIntroduction to Android and Android Studio
Introduction to Android and Android StudioSuyash Srijan
 
Android Seminar Presentation [March 2019]
Android Seminar Presentation [March 2019]Android Seminar Presentation [March 2019]
Android Seminar Presentation [March 2019]Jowin John Chemban
 
Android seminar-presentation
Android seminar-presentationAndroid seminar-presentation
Android seminar-presentationconnectshilpa
 
android phone ppt
android phone pptandroid phone ppt
android phone pptmehul patel
 
Android Apps Development Basic
Android Apps Development BasicAndroid Apps Development Basic
Android Apps Development BasicMonir Zzaman
 
Introduction to android
Introduction to androidIntroduction to android
Introduction to androidzeelpatel0504
 
Introduction to Android, Architecture & Components
Introduction to  Android, Architecture & ComponentsIntroduction to  Android, Architecture & Components
Introduction to Android, Architecture & ComponentsVijay Rastogi
 
Android os: presentaion by Prerak
Android os: presentaion by PrerakAndroid os: presentaion by Prerak
Android os: presentaion by PrerakPrerak Rathore
 
Basic Android College Seminar Presentation
Basic Android College Seminar Presentation Basic Android College Seminar Presentation
Basic Android College Seminar Presentation Jimmin Kurichiyil
 
Presentation2 android Os
Presentation2 android OsPresentation2 android Os
Presentation2 android Osganesh mate
 
Custom Android App Development – Web Animation India
Custom Android App Development – Web Animation IndiaCustom Android App Development – Web Animation India
Custom Android App Development – Web Animation IndiaMarion Welch
 
Android Overview
Android OverviewAndroid Overview
Android OverviewRaju Kadam
 

Was ist angesagt? (20)

Android Programming
Android ProgrammingAndroid Programming
Android Programming
 
Android My Seminar
Android My SeminarAndroid My Seminar
Android My Seminar
 
Android ppt
Android pptAndroid ppt
Android ppt
 
Android report.
Android report.Android report.
Android report.
 
Introduction to Android - Seminar
Introduction to Android - SeminarIntroduction to Android - Seminar
Introduction to Android - Seminar
 
Android Web app
Android Web app Android Web app
Android Web app
 
Android tutorial
Android tutorialAndroid tutorial
Android tutorial
 
Introduction to Android and Android Studio
Introduction to Android and Android StudioIntroduction to Android and Android Studio
Introduction to Android and Android Studio
 
Android Seminar Presentation [March 2019]
Android Seminar Presentation [March 2019]Android Seminar Presentation [March 2019]
Android Seminar Presentation [March 2019]
 
Android seminar-presentation
Android seminar-presentationAndroid seminar-presentation
Android seminar-presentation
 
android phone ppt
android phone pptandroid phone ppt
android phone ppt
 
Android seminar ppt
Android seminar pptAndroid seminar ppt
Android seminar ppt
 
Android Apps Development Basic
Android Apps Development BasicAndroid Apps Development Basic
Android Apps Development Basic
 
Introduction to android
Introduction to androidIntroduction to android
Introduction to android
 
Introduction to Android, Architecture & Components
Introduction to  Android, Architecture & ComponentsIntroduction to  Android, Architecture & Components
Introduction to Android, Architecture & Components
 
Android os: presentaion by Prerak
Android os: presentaion by PrerakAndroid os: presentaion by Prerak
Android os: presentaion by Prerak
 
Basic Android College Seminar Presentation
Basic Android College Seminar Presentation Basic Android College Seminar Presentation
Basic Android College Seminar Presentation
 
Presentation2 android Os
Presentation2 android OsPresentation2 android Os
Presentation2 android Os
 
Custom Android App Development – Web Animation India
Custom Android App Development – Web Animation IndiaCustom Android App Development – Web Animation India
Custom Android App Development – Web Animation India
 
Android Overview
Android OverviewAndroid Overview
Android Overview
 

Andere mochten auch

History of internet
History of internetHistory of internet
History of internetUsman Sajid
 
An Amzing Sermon
An Amzing SermonAn Amzing Sermon
An Amzing SermonManoj Jacob
 
bw23-nyfinalpresentation-verizon-130426104853-phpapp02
bw23-nyfinalpresentation-verizon-130426104853-phpapp02bw23-nyfinalpresentation-verizon-130426104853-phpapp02
bw23-nyfinalpresentation-verizon-130426104853-phpapp02Laurie Shook, MBA
 
7 Steps to Rocking Your Brand on Social Media
7 Steps to Rocking Your Brand on Social Media7 Steps to Rocking Your Brand on Social Media
7 Steps to Rocking Your Brand on Social MediaKatia Millar
 
Mubasher, M Phil synoses seminar
Mubasher, M Phil synoses seminarMubasher, M Phil synoses seminar
Mubasher, M Phil synoses seminarMubasher Solangi
 
Jenis turbin dan nozzle beserta komponennya
Jenis turbin dan nozzle beserta komponennyaJenis turbin dan nozzle beserta komponennya
Jenis turbin dan nozzle beserta komponennyaNur Ilham
 
Big data analysing genomics and the bdg project
Big data   analysing genomics and the bdg projectBig data   analysing genomics and the bdg project
Big data analysing genomics and the bdg projectsree navya
 
Classifications of Triangles by Ricardo C. Lacsa
Classifications of Triangles by Ricardo C. LacsaClassifications of Triangles by Ricardo C. Lacsa
Classifications of Triangles by Ricardo C. LacsaRic Lacsa
 
2 6 rational function graphs
2 6 rational function graphs2 6 rational function graphs
2 6 rational function graphsLomasPreCalc
 
Diretrizes para elaboração de projetos ambientais
Diretrizes para elaboração de projetos ambientaisDiretrizes para elaboração de projetos ambientais
Diretrizes para elaboração de projetos ambientaisCBH Rio das Velhas
 
Dia Internacional da Mulher
Dia Internacional da Mulher Dia Internacional da Mulher
Dia Internacional da Mulher Mary Alvarenga
 
Computer Hardware
Computer HardwareComputer Hardware
Computer Hardwarenitinmote
 
2017 02-22 Oxford Global Biomarker Congress, Manchester, Alain van Gool
2017 02-22 Oxford Global Biomarker Congress, Manchester, Alain van Gool2017 02-22 Oxford Global Biomarker Congress, Manchester, Alain van Gool
2017 02-22 Oxford Global Biomarker Congress, Manchester, Alain van GoolAlain van Gool
 

Andere mochten auch (20)

History of internet
History of internetHistory of internet
History of internet
 
An Amzing Sermon
An Amzing SermonAn Amzing Sermon
An Amzing Sermon
 
bw23-nyfinalpresentation-verizon-130426104853-phpapp02
bw23-nyfinalpresentation-verizon-130426104853-phpapp02bw23-nyfinalpresentation-verizon-130426104853-phpapp02
bw23-nyfinalpresentation-verizon-130426104853-phpapp02
 
Question 7
Question 7Question 7
Question 7
 
Carreras de Caballos
Carreras de CaballosCarreras de Caballos
Carreras de Caballos
 
Lectura 1 Los números Irracionales
Lectura 1 Los números Irracionales Lectura 1 Los números Irracionales
Lectura 1 Los números Irracionales
 
7 Steps to Rocking Your Brand on Social Media
7 Steps to Rocking Your Brand on Social Media7 Steps to Rocking Your Brand on Social Media
7 Steps to Rocking Your Brand on Social Media
 
Mubasher, M Phil synoses seminar
Mubasher, M Phil synoses seminarMubasher, M Phil synoses seminar
Mubasher, M Phil synoses seminar
 
La emoción y el conocimiento van juntos
La emoción y el conocimiento van juntosLa emoción y el conocimiento van juntos
La emoción y el conocimiento van juntos
 
Jenis turbin dan nozzle beserta komponennya
Jenis turbin dan nozzle beserta komponennyaJenis turbin dan nozzle beserta komponennya
Jenis turbin dan nozzle beserta komponennya
 
Execuçao CBH Rio das Velhas
Execuçao CBH Rio das VelhasExecuçao CBH Rio das Velhas
Execuçao CBH Rio das Velhas
 
Big data analysing genomics and the bdg project
Big data   analysing genomics and the bdg projectBig data   analysing genomics and the bdg project
Big data analysing genomics and the bdg project
 
Classifications of Triangles by Ricardo C. Lacsa
Classifications of Triangles by Ricardo C. LacsaClassifications of Triangles by Ricardo C. Lacsa
Classifications of Triangles by Ricardo C. Lacsa
 
2 6 rational function graphs
2 6 rational function graphs2 6 rational function graphs
2 6 rational function graphs
 
Diretrizes para elaboração de projetos ambientais
Diretrizes para elaboração de projetos ambientaisDiretrizes para elaboração de projetos ambientais
Diretrizes para elaboração de projetos ambientais
 
Five Things You Need to Know About Colon Cancer
Five Things You Need to Know About Colon CancerFive Things You Need to Know About Colon Cancer
Five Things You Need to Know About Colon Cancer
 
Android Report
Android ReportAndroid Report
Android Report
 
Dia Internacional da Mulher
Dia Internacional da Mulher Dia Internacional da Mulher
Dia Internacional da Mulher
 
Computer Hardware
Computer HardwareComputer Hardware
Computer Hardware
 
2017 02-22 Oxford Global Biomarker Congress, Manchester, Alain van Gool
2017 02-22 Oxford Global Biomarker Congress, Manchester, Alain van Gool2017 02-22 Oxford Global Biomarker Congress, Manchester, Alain van Gool
2017 02-22 Oxford Global Biomarker Congress, Manchester, Alain van Gool
 

Ähnlich wie Android Seminar || history || versions||application developement

Ähnlich wie Android Seminar || history || versions||application developement (20)

Android technology
Android technology Android technology
Android technology
 
Android Apps
Android AppsAndroid Apps
Android Apps
 
Android
AndroidAndroid
Android
 
Android Seminar BY Suleman Khan.pdf
Android Seminar BY Suleman Khan.pdfAndroid Seminar BY Suleman Khan.pdf
Android Seminar BY Suleman Khan.pdf
 
Android ppt
Android ppt Android ppt
Android ppt
 
Android Applications
Android ApplicationsAndroid Applications
Android Applications
 
Android ppt
Android pptAndroid ppt
Android ppt
 
Android 130923124440-phpapp01
Android 130923124440-phpapp01Android 130923124440-phpapp01
Android 130923124440-phpapp01
 
Android
AndroidAndroid
Android
 
Android based os
Android based osAndroid based os
Android based os
 
Mobile Application Development powerpoint
Mobile Application Development powerpointMobile Application Development powerpoint
Mobile Application Development powerpoint
 
An introduction to Android
An introduction to AndroidAn introduction to Android
An introduction to Android
 
Android ppt
Android pptAndroid ppt
Android ppt
 
Android
Android Android
Android
 
Android Application Development Training by NITIN GUPTA
Android Application Development Training by NITIN GUPTA Android Application Development Training by NITIN GUPTA
Android Application Development Training by NITIN GUPTA
 
Android app development by abhi android
Android app development by abhi androidAndroid app development by abhi android
Android app development by abhi android
 
Android app development
Android app developmentAndroid app development
Android app development
 
01 03 - introduction to android
01  03 - introduction to android01  03 - introduction to android
01 03 - introduction to android
 
Android App Developement
Android App DevelopementAndroid App Developement
Android App Developement
 
Android
AndroidAndroid
Android
 

Kürzlich hochgeladen

AIRCANVAS[1].pdf mini project for btech students
AIRCANVAS[1].pdf mini project for btech studentsAIRCANVAS[1].pdf mini project for btech students
AIRCANVAS[1].pdf mini project for btech studentsvanyagupta248
 
Computer Networks Basics of Network Devices
Computer Networks  Basics of Network DevicesComputer Networks  Basics of Network Devices
Computer Networks Basics of Network DevicesChandrakantDivate1
 
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXssuser89054b
 
data_management_and _data_science_cheat_sheet.pdf
data_management_and _data_science_cheat_sheet.pdfdata_management_and _data_science_cheat_sheet.pdf
data_management_and _data_science_cheat_sheet.pdfJiananWang21
 
Online electricity billing project report..pdf
Online electricity billing project report..pdfOnline electricity billing project report..pdf
Online electricity billing project report..pdfKamal Acharya
 
+97470301568>> buy weed in qatar,buy thc oil qatar,buy weed and vape oil in d...
+97470301568>> buy weed in qatar,buy thc oil qatar,buy weed and vape oil in d...+97470301568>> buy weed in qatar,buy thc oil qatar,buy weed and vape oil in d...
+97470301568>> buy weed in qatar,buy thc oil qatar,buy weed and vape oil in d...Health
 
Rums floating Omkareshwar FSPV IM_16112021.pdf
Rums floating Omkareshwar FSPV IM_16112021.pdfRums floating Omkareshwar FSPV IM_16112021.pdf
Rums floating Omkareshwar FSPV IM_16112021.pdfsmsksolar
 
Thermal Engineering Unit - I & II . ppt
Thermal Engineering  Unit - I & II . pptThermal Engineering  Unit - I & II . ppt
Thermal Engineering Unit - I & II . pptDineshKumar4165
 
notes on Evolution Of Analytic Scalability.ppt
notes on Evolution Of Analytic Scalability.pptnotes on Evolution Of Analytic Scalability.ppt
notes on Evolution Of Analytic Scalability.pptMsecMca
 
Minimum and Maximum Modes of microprocessor 8086
Minimum and Maximum Modes of microprocessor 8086Minimum and Maximum Modes of microprocessor 8086
Minimum and Maximum Modes of microprocessor 8086anil_gaur
 
HOA1&2 - Module 3 - PREHISTORCI ARCHITECTURE OF KERALA.pptx
HOA1&2 - Module 3 - PREHISTORCI ARCHITECTURE OF KERALA.pptxHOA1&2 - Module 3 - PREHISTORCI ARCHITECTURE OF KERALA.pptx
HOA1&2 - Module 3 - PREHISTORCI ARCHITECTURE OF KERALA.pptxSCMS School of Architecture
 
Block diagram reduction techniques in control systems.ppt
Block diagram reduction techniques in control systems.pptBlock diagram reduction techniques in control systems.ppt
Block diagram reduction techniques in control systems.pptNANDHAKUMARA10
 
Tamil Call Girls Bhayandar WhatsApp +91-9930687706, Best Service
Tamil Call Girls Bhayandar WhatsApp +91-9930687706, Best ServiceTamil Call Girls Bhayandar WhatsApp +91-9930687706, Best Service
Tamil Call Girls Bhayandar WhatsApp +91-9930687706, Best Servicemeghakumariji156
 
2016EF22_0 solar project report rooftop projects
2016EF22_0 solar project report rooftop projects2016EF22_0 solar project report rooftop projects
2016EF22_0 solar project report rooftop projectssmsksolar
 
Standard vs Custom Battery Packs - Decoding the Power Play
Standard vs Custom Battery Packs - Decoding the Power PlayStandard vs Custom Battery Packs - Decoding the Power Play
Standard vs Custom Battery Packs - Decoding the Power PlayEpec Engineered Technologies
 
Employee leave management system project.
Employee leave management system project.Employee leave management system project.
Employee leave management system project.Kamal Acharya
 
Hostel management system project report..pdf
Hostel management system project report..pdfHostel management system project report..pdf
Hostel management system project report..pdfKamal Acharya
 
Online food ordering system project report.pdf
Online food ordering system project report.pdfOnline food ordering system project report.pdf
Online food ordering system project report.pdfKamal Acharya
 
DeepFakes presentation : brief idea of DeepFakes
DeepFakes presentation : brief idea of DeepFakesDeepFakes presentation : brief idea of DeepFakes
DeepFakes presentation : brief idea of DeepFakesMayuraD1
 
kiln thermal load.pptx kiln tgermal load
kiln thermal load.pptx kiln tgermal loadkiln thermal load.pptx kiln tgermal load
kiln thermal load.pptx kiln tgermal loadhamedmustafa094
 

Kürzlich hochgeladen (20)

AIRCANVAS[1].pdf mini project for btech students
AIRCANVAS[1].pdf mini project for btech studentsAIRCANVAS[1].pdf mini project for btech students
AIRCANVAS[1].pdf mini project for btech students
 
Computer Networks Basics of Network Devices
Computer Networks  Basics of Network DevicesComputer Networks  Basics of Network Devices
Computer Networks Basics of Network Devices
 
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
 
data_management_and _data_science_cheat_sheet.pdf
data_management_and _data_science_cheat_sheet.pdfdata_management_and _data_science_cheat_sheet.pdf
data_management_and _data_science_cheat_sheet.pdf
 
Online electricity billing project report..pdf
Online electricity billing project report..pdfOnline electricity billing project report..pdf
Online electricity billing project report..pdf
 
+97470301568>> buy weed in qatar,buy thc oil qatar,buy weed and vape oil in d...
+97470301568>> buy weed in qatar,buy thc oil qatar,buy weed and vape oil in d...+97470301568>> buy weed in qatar,buy thc oil qatar,buy weed and vape oil in d...
+97470301568>> buy weed in qatar,buy thc oil qatar,buy weed and vape oil in d...
 
Rums floating Omkareshwar FSPV IM_16112021.pdf
Rums floating Omkareshwar FSPV IM_16112021.pdfRums floating Omkareshwar FSPV IM_16112021.pdf
Rums floating Omkareshwar FSPV IM_16112021.pdf
 
Thermal Engineering Unit - I & II . ppt
Thermal Engineering  Unit - I & II . pptThermal Engineering  Unit - I & II . ppt
Thermal Engineering Unit - I & II . ppt
 
notes on Evolution Of Analytic Scalability.ppt
notes on Evolution Of Analytic Scalability.pptnotes on Evolution Of Analytic Scalability.ppt
notes on Evolution Of Analytic Scalability.ppt
 
Minimum and Maximum Modes of microprocessor 8086
Minimum and Maximum Modes of microprocessor 8086Minimum and Maximum Modes of microprocessor 8086
Minimum and Maximum Modes of microprocessor 8086
 
HOA1&2 - Module 3 - PREHISTORCI ARCHITECTURE OF KERALA.pptx
HOA1&2 - Module 3 - PREHISTORCI ARCHITECTURE OF KERALA.pptxHOA1&2 - Module 3 - PREHISTORCI ARCHITECTURE OF KERALA.pptx
HOA1&2 - Module 3 - PREHISTORCI ARCHITECTURE OF KERALA.pptx
 
Block diagram reduction techniques in control systems.ppt
Block diagram reduction techniques in control systems.pptBlock diagram reduction techniques in control systems.ppt
Block diagram reduction techniques in control systems.ppt
 
Tamil Call Girls Bhayandar WhatsApp +91-9930687706, Best Service
Tamil Call Girls Bhayandar WhatsApp +91-9930687706, Best ServiceTamil Call Girls Bhayandar WhatsApp +91-9930687706, Best Service
Tamil Call Girls Bhayandar WhatsApp +91-9930687706, Best Service
 
2016EF22_0 solar project report rooftop projects
2016EF22_0 solar project report rooftop projects2016EF22_0 solar project report rooftop projects
2016EF22_0 solar project report rooftop projects
 
Standard vs Custom Battery Packs - Decoding the Power Play
Standard vs Custom Battery Packs - Decoding the Power PlayStandard vs Custom Battery Packs - Decoding the Power Play
Standard vs Custom Battery Packs - Decoding the Power Play
 
Employee leave management system project.
Employee leave management system project.Employee leave management system project.
Employee leave management system project.
 
Hostel management system project report..pdf
Hostel management system project report..pdfHostel management system project report..pdf
Hostel management system project report..pdf
 
Online food ordering system project report.pdf
Online food ordering system project report.pdfOnline food ordering system project report.pdf
Online food ordering system project report.pdf
 
DeepFakes presentation : brief idea of DeepFakes
DeepFakes presentation : brief idea of DeepFakesDeepFakes presentation : brief idea of DeepFakes
DeepFakes presentation : brief idea of DeepFakes
 
kiln thermal load.pptx kiln tgermal load
kiln thermal load.pptx kiln tgermal loadkiln thermal load.pptx kiln tgermal load
kiln thermal load.pptx kiln tgermal load
 

Android Seminar || history || versions||application developement

  • 1.
  • 2. WHAT IS ANDROID? • It is a open source software platform and operating system for mobile devices • Based on the Linux kernel • Developed by Google and later the Open Handset Alliance (OHA) • Allows writing managed code in the Java language • Android has its own virtual machine i.e. DVM(Dalvik Virtual Machine),which is used for executing the android applicatn. • Google purchased the initial developer of the software , android incorporated in 2005. • Provides platform for developing apps & marketplace for distribution.
  • 3.  Android was designed as a platform for software development.  Android is open source.  Android is free.  Community support.  Tool support. Why Android ?
  • 4. HISTORY OF ANDROID  Android Inc. founded in Palo Alto, California, united states in October 2003 by Andy Rubin[co-founder of danger ], rich miner[co-founder of wildfire communication Inc.], nick sears[once VP at T-Mobile], and Chris white[headed design and interface development at web TV] to develop.  Andy Rubin was developed android in the year 2003-2005 with Google support and same company took Android in August 2005.  In 2008 the first Android device is launched, that is HTC Dream G1 which operates Android 1.0
  • 5. Key features of Android  Storage  Connectivity  Messaging  Multiple languages  Web browser  Java support  Media support  Supports SSL(TLS)  Streaming media support  Additional hardware support  Multi-touch
  • 6.
  • 7. LINUX KERNEL •The architecture is based on the Linux2.6 kernel. • This layer is core of android architecture. It provides service like power management, memory management, security etc. • It helps in software or hardware binding for better communication.
  • 8. NATIVE LIBRARIES • Android has its own libraries, which is written in C/C++. These libraries cannot be accessed directly. With the help of application framework, we can access these libraries. There are many libraries like web libraries to access web browsers, libraries for android and video formats etc.
  • 9. Android Run Time • The Android Runtime was designed specifically for Android to meet the needs of running in an embedded environment where you have limited battery, limited memory, limited CPU. • Dalvik is the process virtual machine in Google's android operating system. It is the software that runs the apps on android devices. Dalvik is thus an integral part of android ,which is typically used on mobile devices such as mobile phones and tablet computers. • Programs are commonly written in java and compiled to byte code.
  • 10. Android Run Time •This is in blue, meaning that it's written in the Java programming language. •The core library contains all of the collection classes, utilities, IO, all the utilities and tools that you’ve come to expected to use.
  • 11. Application Framework •This is all written in a Java programming language and the application framework is the toolkit that all applications use. •These applications include the ones that come with a phone like the home applications, or the phone application. •It includes applications written by Google, and it includes apps that will be written by you. •So, all apps use the same framework and the same APIs.
  • 12. Contd… These are as follows:- • Activity manager:-It manages the lifecycle of applications. It enable proper management of all the activities. All the activities are controlled by activity manager. • Resource manager:-It provides access to non-code resources such as graphics etc. • Notification manager:-It enables all applications to display custom alerts in status bar. • Location manager:- It fires alerts when user enters or leaves a specified geographical location. • Package manager:-It is use to retrieve the data about installed packages on device. • Window manager:-It is use to create views and layouts. • Telephony manager:-It is use to handle settings of network connection and all information about services on device.
  • 13. APPLICATION LAYER •the final layer on top is Applications. •It includes the home application the contacts application , the browser, and apps. •It is the most upper layer in android architecture. •All the applications like camera, Google maps, browser,sms,calendars,contacts are native applications. These applications works with end user with the help of application framework to operate.
  • 14. A number of well-recognized mobile operating systems are available in the market in both proprietary and open-source categories. Most widely used mobile operating systems are − •Android •IOS •BlackBerry •Windows
  • 15.
  • 18. Code name Version number Initial release date API level Alpha 1.0 September 23, 2008 1 Beta 1.1 February 9, 2009 2 Cupcake 1.5 April 27, 2009 3 Donut 1.6 September 15, 2009 4 Éclair 2.0 – 2.1 October 26, 2009 5 – 7 Froyo 2.2 – 2.2.3 May 20, 2010 8 Gingerbread 2.3 – 2.3.7 December 6, 2010 9 – 10 Honeycomb 3.0 – 3.2.6 February 22, 2011 11 – 13 Ice Cream Sandwich 4.0 – 4.0.4 October 18, 2011 14 – 15 Jelly Bean 4.1 – 4.3.1 July 9, 2012 16 – 18 KitKat 4.4 – 4.4.4 October 31, 2013 19 – 20 Lollipop 5.0 – 5.1.1 November 12, 2014 21 – 22 Marshmallow 6.0 – 6.0.1 October 5, 2015 23 Nougat 7.0 August or September 2016 24
  • 19. A software development kit (SDK or "devkit") is typically a set of software development tools that allows the creation of applications for a certain software package, software framework, hardware platform, computer system, video game console, operating system, or similar development platform. What is SDK?
  • 20. What is JDK ?  The Java Development Kit (JDK) is a software development environment used for developing Java applications and applets. It includes the Java Runtime Environment (JRE), an interpreter/loader (java), a compiler (javac), an archiver (jar), a documentation generator (javadoc) and other tools needed in Java development.
  • 21. Android Studio  Official IDE for Android application development.  Based on JetBrains’ IntelliJ IDEA software  Available on Windows, Linux, Mac.
  • 22.  Android Studio vs. Eclipse ADT comparison Feature Android Studio Eclipse ADT Eclipse AndMore Build system Graldle Apache Ant Gradle/Maven/Ant Maven-based build dependencies Yes No Yes Build variants and multiple-APK generation Yes No ? Advanced Android code Complition and refactoring Yes Yes ? Graphical layout editor Yes Yes Yes APK signing and keystore management Yes Yes Yes NDK support Yes Yes Yes
  • 23. Windows OS X Linux OS version Microsoft Windows 10/8/7 (32- or 64-bit) Mac OS X 10.8.5 or higher, up to 10.11.4 (El Capitan) GNOME or KDE desktop RAM 2 GB RAM minimum, 8 GB RAM recommended Disk space 500 MB disk space for Android Studio, at least 1.5 GB for Android SDK, emulator system images, and caches Java version Java Development Kit (JDK) 8 Java Development Kit (JDK) 6 Java Development Kit (JDK) 8 Screen resolution 1280x800 minimum screen resolution System requirements Version 2.x
  • 27. Storage Options Shared Preferences Internal Storage External Storage SQLite Databases Network Connection
  • 29. Light-weight data interchange format. Language independent. Collection of name/value pairs
  • 30.
  • 32. Google to train 2 mn developers in Android Tech giant Google aims to train about 2 million developers in India on its Android platform over the next three years to cash in on the high-quality talent pool in the country. India, which has about one million people working on solutions for the Android mobile platform, is poised to become home to about 4 million developers by 2018, making it the worlds largest developer base.
  • 34.