---
title: "The Architecture Of Android Case Study You'll Never Forget"  
description: "you will be equipped with the basic knowledge you need to explore more sophisticated techniques and tricks for developing your next killer Android app"  
author: "meenati biswal"  
published: 2019-08-26  
updated: 2019-09-07  
canonical: https://www.mindstick.com/articles/167856/the-architecture-of-android-case-study-you-ll-never-forget  
category: "android"  
tags: ["android", "android styles", "android activity", "android sdk"]  
reading_time: 2 minutes  

---

# The Architecture Of Android Case Study You'll Never Forget

To understand how Android works, which shows the various layers that make up the Android [operating system](https://answers.mindstick.com/qa/97659/what-to-do-if-you-accidently-deleted-the-utilities-accessories-from-the-add-remove-window-of-your-operating-system) (OS).

![The Architecture Of Android Case Study You](https://www.mindstick.com/mindstickarticle/1a8fc608-24d4-41d5-b428-4206bd9c10b0/images/51e05098-f088-483b-93c2-6de5c9f5fc38.jpeg)\

The Android OS is roughly divided into five sections into four main layers:

➤➤ Linux kernel—This is the kernel on which Android is based. This layer contains all the low-level device drivers for the various hardware components of an [Android device](https://www.mindstick.com/articles/342298/best-ways-to-customize-your-android-device-for-better-productivity). android training

➤➤ Libraries—These contain the code that provides the main features of an Android OS. For example, the SQLite library provides database support so that an application can use it for data storage. The WebKit library provides functionalities for web browsing.

➤➤ Android runtime—The Android runtime is located in the same layer with the libraries and provides a set of [core libraries](https://www.mindstick.com/forum/23221/gof-design-patterns-in-java-s-core-libraries) that enable developers to write Android apps using the Java [programming language](https://www.mindstick.com/forum/156801/write-a-program-for-reverse-a-word-in-sentence-in-any-programming-language). The Android runtime also includes the Dalvik [virtual machine](https://www.mindstick.com/forum/155642/how-to-create-virtual-machine-instances-in-google-cloud), which enables every [Android application](https://www.mindstick.com/forum/12895/display-a-toast-message-in-the-top-of-the-page-in-my-android-application) to run in its process, with its instance of the [Dalvik virtual](https://answers.mindstick.com/qa/32821/what-is-dalvik-virtual-machine) machine. (Android applications are compiled into Dalvik executables). Dalvik is a specialized virtual machine designed specifically for Android and optimized for battery-powered [mobile devices](https://answers.mindstick.com/qa/105119/how-to-use-mobile-devices-for-field-service-management-in-business) with limited memory and CPU power.

➤➤ Application framework—The application framework exposes the various capabilities of the Android OS to application developers so that they can make use of them in their applications. android [app development](https://www.mindstick.com/services/mobile-app-development) course

➤➤ Applications—At this top layer are the applications that ship with the Android device (such as Phone, Contacts, Browser, and so on), as well as applications that you [download and install](https://answers.mindstick.com/qa/50784/how-to-troubleshoot-your-iphone-7-that-won-t-download-and-install-apps-other-issues) from the Android Market. Any applications that you write are located at this layer.

---

Original Source: https://www.mindstick.com/articles/167856/the-architecture-of-android-case-study-you-ll-never-forget

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
