Faraz Sheikhitsfrz.hashnode.dev·Aug 14, 2024Android Internals 101 : Essential System Services Demystified.Bonjour Droids! Welcome again. Till now, we have discussed essential AOSP concepts, which’ve helped us to set the base of our foundational learning of AOSP development. Today we will look pass through further deep inside AOSP system to make sure that...DiscussAndroid Internals 101aosp
Faraz Sheikhitsfrz.hashnode.dev·Aug 5, 2024Android Internals 101 : AOSP Directory StructureHello Droids! Welcome back to the ongoing series of Android Internals 101 with me. Today’s blog is quite interesting though, which actually will help us to traverse on the AOSP folder structure.By the end of these blog we will make sure to have all t...Discuss·56 readsAndroid Internals 101aosp
Faraz Sheikhitsfrz.hashnode.dev·Aug 1, 2024Android Internals 101 : Android Framework Build SystemHello Droids! Welcome back again in the exciting journey of AOSP internals with me. Today we will try to dig up in the AOSP build process and uncover some interesting facts and concepts related to it. About this blog currently we are on 3rd chapter o...Discuss·7 likesAndroid Internals 101Android
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
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·Jan 16, 2024Looper, Handler in Android Part 2 - HandlerThis article is a continuation of our exploration into the Android's Looper and Handler. If you haven't read part 1 yet, I recommend revisiting it, as we won't be revisiting those concepts here. In this post, we will look at Handler class and its rel...Discuss·70 readsMultiThreading In Androidlooper-android
Dhina17blog.dhina17.dev·Dec 25, 2022How does an application run on Android OS?Android APK is a file format(typically zip) containing the app's source code and resources. Generally, Java/Kotlin code will be compiled into java bytecode. So we need a Virtual Machine to run the bytecode. Android has an optimized runtime environmen...Discuss·1 like·97 readsandroid internals