[android-developers] Question on Broadcast receiver with some prioroty set and category set as Home

2011-06-25 Thread Sudeep Sharma
Hi, I have an application set as Home category having higher priority than the normal Home app. This is to show my app first as soon as the phone boots up. I have a broadcast receiver also within my manifest which also has same category home with priority even more than of my activity.

Re: [android-developers] Question on Broadcast receiver with some prioroty set and category set as Home

2011-06-25 Thread Dianne Hackborn
(1) Third party applications can't have a priority higher than 0. (2) A receiver is different than an activity, and will not handle intents that are being used to launch an activity, so your receiver here will never have any reason to run. On Sat, Jun 25, 2011 at 2:54 AM, Sudeep Sharma

Re: [android-developers] Question on Broadcast receiver with some prioroty set and category set as Home

2011-06-25 Thread Mark Murphy
On Sat, Jun 25, 2011 at 2:00 PM, Dianne Hackborn hack...@android.com wrote: (1) Third party applications can't have a priority higher than 0. Are you sure about that? It worked the last time I tried it, and the documentation's example (100) is higher than 0. -- Mark Murphy (a Commons Guy)