Re: [android-developers] Broadcast receiver not working in ICS

2012-07-13 Thread Fabien R
On 12/07/2012 11:02, Live Happy wrote: i have a service with separate processes in my application run from Broadcast receive after boot completed i tested the code in android 2.3.3 and all is work fine but when i tested on ICS 4.0.3 even the processes exist in the applications runing but

Re: [android-developers] Broadcast receiver not working in ICS

2012-07-13 Thread Live Happy
there is no errors in the Logcat nothing appears maybe the boot complete intent dont wok on ics anymore On Fri, Jul 13, 2012 at 11:38 AM, Fabien R theedge...@free.fr wrote: On 12/07/2012 11:02, Live Happy wrote: i have a service with separate processes in my application run from Broadcast

Re: [android-developers] Broadcast receiver not working in ICS

2012-07-13 Thread Mark Murphy
On Android 3.1+, something has to manually run one of your components (e.g., user launches an activity) before manifest-registered BroadcastReceivers will work. On Thu, Jul 12, 2012 at 5:02 AM, Live Happy livehap...@gmail.com wrote: i have a service with separate processes in my application

Re: [android-developers] Broadcast receiver not working in ICS

2012-07-13 Thread Live Happy
so can u please explain to me how the whatsup work when the BroadcastReceivers will not work till u launch an activity!! On Fri, Jul 13, 2012 at 1:39 PM, Mark Murphy mmur...@commonsware.comwrote: On Android 3.1+, something has to manually run one of your components (e.g., user launches an

Re: [android-developers] Broadcast receiver not working in ICS

2012-07-13 Thread Streets Of Boston
Take a look at this info here: http://developer.android.com/about/versions/android-3.1.html#launchcontrols (if the link doesn't take you directly to this section, search for 'stopped' on that page.) Add this flag to your intent to override this behavior:

Re: [android-developers] Broadcast receiver not working in ICS

2012-07-13 Thread Mark Murphy
On Fri, Jul 13, 2012 at 11:06 AM, Streets Of Boston flyingdutc...@gmail.com wrote: Add this flag to your intent to override this behavior: Intent.FLAG_INCLUDE_STOPPED_PACKAGES That will not work for BOOT_COMPLETED, as Android is the one broadcasting the Intent -- FLAG_INCLUDE_STOPPED_PACAKGES

Re: [android-developers] Broadcast receiver not working in ICS

2012-07-13 Thread Streets Of Boston
Whoops, forgot to realize that his app is not doing the sending of the broadcast. :-) On Friday, July 13, 2012 11:55:16 AM UTC-4, Mark Murphy (a Commons Guy) wrote: On Fri, Jul 13, 2012 at 11:06 AM, Streets Of Boston wrote: Add this flag to your intent to override this behavior:

[android-developers] Broadcast receiver not working in ICS

2012-07-12 Thread Live Happy
i have a service with separate processes in my application run from Broadcast receive after boot completed i tested the code in android 2.3.3 and all is work fine but when i tested on ICS 4.0.3 even the processes exist in the applications runing but its not write the throw logs in the