Components of Android Architecture

Every new beginning is hard
In this article,we will be learning about Architecture of android operating system.
Without proper knowledge of android architecture you may face difficulty in learning android programming.
Android operating system comprise of different software components arranges in stack. It is in the form of a software application, operating system, run-time environment, middleware, native libraries and services.
Architecture of Android
Different components of android operating system are
1. Linux Kernel
2. Native Libraries
3. Android Runtime
4. Application Framework
5. Applications 
Lets discuss them one by one
1. Linux Kernel
  • Linux is the heart of the Android software stack and It Positioned at the bottom of the Android software stack
  • Linux kernel was originally developed for use in traditional computers in the form of desktops and servers.
  • Android depends on Linux version 2.6 for basic services such as security system, memory management, process management, network stack and driver model.
  • It provides a level of abstraction between the hardware devices and the upper layers of the Android software stack.
  • It is also providing a network stack and device drivers for hardware such as the device display, Wi-Fi and audio
2. Native Libraries
  • It provides the different libraries useful for well functioning of android operating system.
  • The native libraries such as Media, WebKit, SQLite, OpenGL, FreeType, C Runtime library (libc)           
  1. Media library - Responsible for playing and recording audio and video formats,
  2. FreeType -  Render our fonts ,High quality and portable font engine.
  3. OpenGL - It is used to provide Java interface to the OpenGL/ES 3D graphics rendering API.(In android graphics platform,We can combine 3D and 2D graphics in the same application.)
  4. WebKit  - Browser support (It Render well on small screens and on mobile devices)
  5. SQLite - It uses that as core of most of its data storage
  6. SSL - It is used to provide internet security
3.Android Runtime
  • Android Runtime includes Core libraries and Dalvik Virtual Machine (DVM) which is responsible to run android application.
  • Core libraries which enable Android application developers to write Android applications using standard Java programming language. The Core library contains all of the collection classes,utilities,IO and tools.
  • The Dalvik Virtual Machine converts the bytecodes (Java class files) having .class extensions that generated by the Java compiler into the Dalvik—executable files that have .dex extensions and it is specially designed and optimized for Android.
4. Application Framework
  • The Application Framework is a collection of services that collectively form the environment in which Android applications run and are managed, higher level services to the applications in the form of Java classes
The key services of the Android framework include 
  1. Activity manager –Responsible for controlling all the aspects of the application lifecycle and activity stack
  2. Content Provider -  Data sharing between two applications
  3. Telephony Manager - To manages all voice calls
  4. Location Manager - Access to the location services allowing an application to receive updates about location changes.
  5. Resource Manager – Access to non-code embedded resources such as strings, color settings and user interface layouts.
5.Application
  • Applications include an email client, SMS program, calendar, maps, browser, contacts, and others. All applications are written in Java programming language.
  • The user can write his/her application to be installed on this layer only.
To know more about concept in android, Click here

Comments

  1. Given so much info in it, These type of articles keeps the users interest in the website, and keep on sharing more ... good luck.android training in chennai with placement | Android Training in chennai |Best Android Training in chennai

    ReplyDelete
  2. Thanks for splitting your comprehension with us. It’s really useful to me & I hope it helps the people who in need of this vital information.... Android Training in Bangalore

    ReplyDelete
  3. This comment has been removed by the author.

    ReplyDelete
  4. I have read your blog and I gathered some needful information from your blog. Keep update your blog. Waiting for your next update. Java Training in Chennai | Pega Training in Chennai

    ReplyDelete

Post a Comment

Popular posts from this blog

Google Declared Best Android Apps Of 2017: No Place For Facebook Or Whatsapp That Make Everyone Love It

Steps for Android Studio - Environment Setup

Core Building Blocks of Android