Faraz Sheikhitsfrz.hashnode.dev·Jul 30, 2024Android Internals 101 : Android Internal Architecture DemystifiedHello Droids! Welcome back to the continuing multipart series of Android Internals 101. Today we will try to scratch the surface of android architecture framework. We will uncover the tech and the idea behind each layer of android architecture one by...DiscussAndroid Internals 101aosp
Sajal Raj Gautamblog.sajalrg.com·Jul 23, 2024Android BootUp Sequence: Major Milestones1. Power On When the user presses the power button, it loads the bootloader from a predefined location in ROM to RAM and executes it. 2. Bootloader This is a small program that loads before kernel. It primarily loads the kernel and executes it. 3. Li...Discuss·26 readsaosp
Faraz Sheikhitsfrz.hashnode.dev·Jul 10, 2024Android Internals 101 : Android Boot ProcessHello Droids! Welcome to the brand new series of android internals 101. Let’s begin our adventurous trip of android’s internal framework, as we all know android is the worlds most favorite operating system, and it’s designed in way that till this dat...DiscussAndroid Internals 101aosp
Sajal Raj Gautamblog.sajalrg.com·Feb 22, 2024Internals of HandlerThread in AndroidIn previous parts, we've delved into Handler, Looper and Message, understanding their roles in enabling code execution within a specified thread and facilitating safe communication between threads. The HandlerThread class combines these concepts, sim...Discuss·66 readsMultiThreading In AndroidAndroid