0 votes
in Android by
What is an android application architecture?

2 Answers

0 votes
by

The Android architecture consists of:

  1. Android Framework
  2. Android Applications
  3. Linux Kernel
  4. Libraries
0 votes
by

Android architecture refers to the various layers in the Android stack. It consists of operating systems, middleware, and applications. Each layer in the Android architecture gives different services to the layer just above it.

The five layers present in the Android stack are:

Linux Kernel - It is responsible for device drivers, device management, memory management, power management, and resource access.

Libraries - There are a set of libraries having open-source Web browser engine WebKit, well-known library libc, libraries to play and record audio and video, SQLite database for sharing of application data and storage, SSL libraries for internet security, etc.

Android Runtime - There are core libraries along with DVM (Dalvik Virtual Machine) or ART(Android RunTime) as runtime which is helpful for running an Android application. DVM is optimized for mobile devices. DVM provides fast performance and consumes less memory. Replacing DVM, ART(Android RunTime) virtual machine was introduced to execute android apps from Android lollipop 5.0 version (API level 21).

Android Framework - It consists of Android APIs like UI (User Interface), resources, content providers (data), locations, telephony, and package managers. It provides interfaces and classes for the development of Android applications.

Android Applications - Applications like home, games, contacts, settings, browsers, etc. uses the Android framework that will make use of Android runtime and libraries.

Related questions

0 votes
asked Mar 29, 2023 in Android by Robin
+1 vote
asked Jan 14, 2021 in Android by RShastri
...