Ash,
 You can try setting high priority to your intent-filter similar to the
following snippet so that your application will be the first one to receive
the BOOT_COMPLETED intent by which your application would avoid showing up
Home screen in delta time

       <intent-filter android:priority="*100*">
               <action android:name="android.intent.action.BOOT_COMPLETED"
/>
               <category android:name="android.intent.category.DEFAULT" />
       </intent-filter>

   Ref:
http://developer.android.com/guide/topics/manifest/intent-filter-element.html#priority

Cheers,
Jayaram

On Tue, Sep 13, 2011 at 11:25 AM, Ash <anan...@gmail.com> wrote:
> That is what my guess is.
>
> --
> 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

-- 
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