This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Working on Android phones can be quite interesting. | |
Recently I've had opportunities that required me to work on more advanced features of Android OS apart from the more common create app featurs that rely on pre-created with specified and well supported libraries e.g Jetpack Compose. | |
A common problem that many will face as they work on the Android phones, is starting an service on boot complete. | |
I will skip the process of implementing the broadcast receiver class and the manifest declaration. | |
Main point for this gist is to provide my finding based on the research I have done amd make another developers life easier, I mean, we stand on the shoulders of those that came before us. | |
Auto-Starting apps is not very easy for most developers, further, most OEMs make it quite difficult to find the setting manually. Asking the user to navigate to settings and do the work for you is quite a douting task. |