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...26 readsaosp
Yashraj Singh Jadonblog.yashraj.dev·Jun 26, 2024How to Use Content Provider and Content Resolver for data sharing between appsIntroduction A content provider in Android provides secure access to a central repository of data that can be stored in a variety of formats, such as a SQLite database, a file, or a web service. It provides a standardized interface for other applicat...71 readscontent resolver
Khush Panchalkhushpanchal.hashnode.dev·Apr 17, 2024Understanding Broadcast Receivers in AndroidWhat are Broadcast Receivers? Broadcast Receiver is one of the component in Android that enable apps to listen for and respond to broadcast messages from other apps or the system itself. Think of them as listeners waiting for specific events to occur...android component