Photo by Roman Kraft on Unsplash
Read More

Android Broadcast Receiver Tutorial

The Android Broadcast Receiver component allows an app to receive messages from the Android system or other apps, and to send messages to other components of the app itself, or to other apps. It is similar to the publish-subscribe design pattern.
Read More
Photo by Amal Abas on Unsplash
Read More

Android Service Tutorial

Android Service is one of the four application components of Android. It can perform longer-running work in the background, such as playing music, downloading files, etc. So Service does not provide user interface. This article will introduce the basic concepts of Service.
Read More