Android. Basic Architecture Linux Kernel Libraries Applications Android Runtime Application Framework.

Slides:



Advertisements
Similar presentations
Android Application Development A Tutorial Driven Course.
Advertisements

Introduction.  Professor  Adam Porter 
Mobile Application Development with ANDROID Mobile Application Development with ANDROID d.
Delrieu Marjorie Loiseau Pierre
David Angulo Rubio ANDROID OS Open Software Platform for Mobile Devices.
What is Android?.
Android architecture overview
Introduction to Android Mohammad A. Gowayyed CS334-Spring 2014.
Android Platform Overview (1)
Android: An Open Software Platform for Mobile Devices
DEPARTMENT OF COMPUTER ENGINEERING
ANDROID OPERATING SYSTEM Guided By,Presented By, Ajay B.N Somashekar B.T Asst Professor MTech 2 nd Sem (CE)Dept of CS & E.
Android Google. Android An Open Handset Alliance Project Write apps to run on mobile phones Will be released as open source.
© 2010 MindTree Limited CONFIDENTIAL: For limited circulation only Slide 1 CONFIDENTIAL: For limited circulation only An automaton that is created from.
Mobile Application Development
This work is licensed under the Creative Commons Attribution 4.0 International License. To view a copy of this license, visit
@2011 Mihail L. Sichitiu1 Android Introduction Platform Overview.
Asst.Prof.Dr.Ahmet Ünveren SPRING Computer Engineering Department Asst.Prof.Dr.Ahmet Ünveren SPRING Computer Engineering Department.
Introduction to Android Platform Overview
To be Presented by, T.Sathishkumar [11mw07] 1. Synopsis Introduction Version Features License An Application Development Demo Possibilities Advantages.
Android Middleware Bo Pang
Android Introduction Platform Overview.
Mobile Application Development with ANDROID Tejas Lagvankar UMBC 29 April 2009.
Mobile Application Development with ANDROID. Agenda Mobile Application Development (MAD) Intro to Android platform Platform architecture Application building.
About me Yichuan Wang Android Basics Credit goes to Google and UMBC.
Mobile Application Development using Android
Overview of Android North Carolina A&T State University Some slides contain material taken from the Google Android website.
Android Introduction Based on slides made by
@2011 Mihail L. Sichitiu1 Android Introduction Platform Overview.
Android Programming By Mohsen Biglari Android Programming, Part1: Introduction 1 Part1: Introduction By Mohsen Biglari.
Copyright© Jeffrey Jongko, Ateneo de Manila University Android.
01. Introduction to Android Prof. Oum Saokosal Master of Engineering in Information Systems, South Korea
ANDROID Presented By Mastan Vali.SK. © artesis 2008 | 2 1. Introduction 2. Platform 3. Software development 4. Advantages Main topics.
ANDROID 응용 프로그래밍 과정 – 목차 - 안드로이드란 - 안드로이드가 만들어지게 된배경 - 안드로이드의 철학 - 안드로이드 환경설정 ( SDK download, eclipse plug-in 설정, 간단한 프로그램 실행 ) - 안드로이드 동작원리 - 안드로이드 핵심.
Android Husam Abdel Rahman. Introduction Android Operating system is most popular operating system these days with the advance in voice communications.
Android architecture & setting up. Android operating system comprises of different software components arranges in stack. Different components of android.
ANDROID BY:-AANCHAL MEHTA MNW-880-2K11. Introduction to Android Open software platform for mobile development A complete stack – OS, Middleware, Applications.
Created By. Jainik B Patel Prashant A Goswami Gujarat Vidyapith Computer Department Ahmedabad.
1 Android Introduction Platform Overview. 2 What is Android?  Android is a software stack for mobile devices that includes an operating system, middleware.
Mobile Application Development with ANDROID Umang Patel(6537) LDCE.
1 Android Workshop Platform Overview. 2 What is Android?  Android is a software stack for mobile devices that includes an operating system, middleware.
Android operating system N. Sravani M. Tech(CSE) (09251D5804)
By Adam Reimel. Outline Introduction Platform Architecture Future Conclusion.
Android. I. What’s Android Android is a mobile operating system (OS) based on the Linux kernel and currently developed by Google. Android is designed.
ANDROID OS Ravi Soni MTech (CS) III Sem. W HAT IS A NDROID ? Android is a software stack for mobile devices that includes an operating system, middleware.
Android. Android An Open Handset Alliance Project A software platform and operating system for mobile devices Based on the Linux kernel Developed by Google.
Android Training in Chandigarh. What is Android Android is a mobile operating system based on the Linux Kernel. The goal of android project is to create.
BY : MS ARTI B BAVANE. INTRODUCTION Formed on February 15,2010. Jointly found by two pillars Intel and Nokia by joining their existing open source projects.
Android Overview Reference: Embedded Android by Yaghmour.
The Basics of Android App Development Sankarshan Mridha Satadal Sengupta.
Computer System Structures
Android Mobile Application Development
Visit for more Learning Resources
Architecture of Android
ANDROID AN OPEN HANDSET ALLIANCE PROJECT
Chapter 2: Operating-System Structures
chapter 6- Android Introduction
Software Engineering in Mobile Computing
Contents: Introduction Different Mobile Operating Systems
Android: Modding & Hacking whitone 2012/12/12.
CMPE419 Mobile Application Development
Building Android OS Topics: Building Android and Kernel
ANDROID OS Architecture
Application Framework
Application Development A Tutorial Driven Course
Android Introduction Platform Mihail L. Sichitiu.
Korea Software HRD Center
Android Platform, Android App Basic Components
Android Overview.
CMPE419 Mobile Application Development
Presentation transcript:

Android

Basic Architecture Linux Kernel Libraries Applications Android Runtime Application Framework

H/W support X86 for “Mobile Internet Devices” (MIDs) – Nook Color/Tablet – Kindle Fire – Other tablets ARM for mobile phones

The Linux Kernel Drivers – Display – Keypad – Camera – WiFi – Flash Memory – Audio – Binder – Power mgr

Libraries Surface mgr (access to UI) Graphics (OpenGL | ES) SGL (2D graphics engine) Media framework (audio & video) Freetype – bitmap & vector rendering SSL (networking) SQLite WebKit (web browser) Libc (known as “Bionic”) 3D (OpenGL ES 1.0 APIs) h/w or s/w rasterizing

Android Runtime

Application Framework Package Mgr (app pkg info storage) Activity Mgr (application life-cycle) Location Mgr (location & bearing) Notification Mgr (custom status alerts) View System (lists, grids, textboxes, etc.) Content providers (cross-app data exchange) Resource Mgr (localized strings, graphics, layouts) Telephony Mgr

What’s different - 1 No swap space Dalvik VM vs. JVM (no JIT compiler) libc vs. glibc JIT compiler (in Android 2.2) – Xlates.DEX-> machine code Hardware: ARM (RISC-based, 32-bit) – + 2 nd set of 16-bit inst’s (the thumb set) – Interleaved with 32-bit inst’s Reduces program size (up to 30%)

What’s different - 2 Android solutions are NOT Linux solutions – Uses a non-standard Linux kernel – Based on (not equal to) Linux 2.6 Enhancements include: – alarm driver (wakeup devices) – shared memory driver (ashmem) – binder (for IPC – not same as a linker), – power management (more aggressive than Linux) – low memory killer – kernel debugger and logger

What’s different - 3 Virtual memory limited to physical RAM size A new lock type (need details) Important user-space components omitted [3] – process shared mutexes – conditional variables – IPC – Thread cancellation – multiple timers/thread – C++ exception support – /etc/passwd & /etc/groups eliminated

Startup Kernel->init – init Reads init.rc & init.device.rc (device specific) – Zygote process is started via init.rc Loads core Java classes Performs initialization Idles, listening on socket

references 1. gy/software-technology/difference-between- android-and-linux/ gy/software-technology/difference-between- android-and-linux/ 2. kernel-problems.htmlhttp:// kernel-problems.html 3.A Survey on Android vs. Linux content/uploads/2011/02/linux_versus_andr oid.pdf content/uploads/2011/02/linux_versus_andr oid.pdf