Top "Bootcompleted" questions

ACTION_BOOT_COMPLETED is one of the standard actions in Android OS that Intent defines for receiving broadcasts.

Android -Starting Service at Boot Time

I need to start a service at boot time. I searched a lot. They are talking about Broadcastreceiver. As I …

android autostart bootcompleted
Android adb shell am broadcast: Bad component name

I am trying to 'emulate' a reboot (or anything else with the adb shell am) and am unable to figure …

android adb bootcompleted
BOOT_COMPLETED not working Android

First of all, i know there has been hundreds of this kind of question asked, but i've been checking them …

android broadcastreceiver bootcompleted
Android BOOT_COMPLETED not received when application is closed

I am aware that this question has been asked a lot on the site, however, I cant seem to find …

android bootcompleted
Android ACTION_SHUTDOWN Broadcast not working

Code - public class ShutdownReceiver extends BroadcastReceiver { private static final String TAG = "ShutdownReceiver"; @Override public void onReceive(final Context context, …

android bootcompleted powermanager
Unable to instantiate receiver java.lang.ClassNotFoundException

I got an error in my android application when it tries to instantiate a receiver that i use to start …

android broadcastreceiver bootcompleted
broadcasting of BOOT_COMPLETED intent action does not work properly

I have a receiver class listening on several actions but it can not catch the android.intent.action.BOOT_COMPLETED …

android broadcastreceiver action bootcompleted
Android: OnBootReceiver: Exported receiver does not require permission

I've created a BroadcastReceiver, which receives BOOT_COMPLETED. In my AndroidManifest.xml I've added it like so: <receiver android:…

java android broadcastreceiver android-manifest bootcompleted
How to debug BOOT_COMPLETE broadcast receiver's "Force Close" crashes?

Since the phone restarts and thus gets disconnected from the Eclipse debugger/LogCat while it's booting up, how do I …

android broadcastreceiver android-logcat bootcompleted
Runtime exception Android O with boot_completed

I'm trying to start an IntentService within my BOOT_COMPLETED receiver, but in Android O (API 26) I get: java.lang.…

android android-broadcastreceiver bootcompleted android-8.0-oreo