Hello,

I wish to listen to  android.intent.action.BOOT_COMPLETED.

However i am not getting the broadcast intent, if i specify
com.test.BootBroadcastReceiver in the manifest.

When i change this value to simply BootBroadcastReceiver, then i am getting
the broadcast intent.

<receiver android:name="BootBroadcastReceiver" android:enabled="true">

       <intent-filter>
         <action android:name="android.intent.action.BOOT_COMPLETED" />
       </intent-filter>

 </receiver>

My package in the manifest file is:

<manifest xmlns:android="http://schemas.android.com/apk/res/android";
      package="com.test"

and the BootBroadcastReceiver resides in this package.

What is the reason behind this ?

Thanks in advance
-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to