Re: [mono-android] Automatic activity start

2013-03-08 Thread Jeremy A. Kolb - ARA/NED
rsday, March 07, 2013 2:05 PM To: monodroid@lists.ximian.com Subject: Re: [mono-android] Automatic activity start i have the same problem, something is wrong with mono for android . my broadcast receiver doesn't fire at all but when i add to manifest file it fire

Re: [mono-android] Automatic activity start

2013-03-08 Thread Sait
i have the same problem, something is wrong with mono for android . my broadcast receiver doesn't fire at all but when i add to manifest file it fires and then crashes .. maybe it's all about running an application once ;if so then start main activity like other apps and

Re: [mono-android] Automatic activity start

2012-11-27 Thread Stephan Steiner
>Try using context.StartActivity() instead of context.ApplicationContext.StartActivity(). >Another important question is this: what platform are you running on? Honeycomb changed things so that >apps won't get the BOOT_COMPLETED notification unless the user has launched the app at least once, >s

Re: [mono-android] Automatic activity start

2011-12-18 Thread Martyn Wendon
ays running. Thanks, Martyn Sent from my Android phone using TouchDown (www.nitrodesk.com) -Original Message- From: Jonathan Pryor [j...@xamarin.com] Received: Friday, 16 Dec 2011, 21:00 To: Discussions related to Mono for Android [monodroid@lists.ximian.com] Subject: Re: [mono-android] Auto

Re: [mono-android] Automatic activity start

2011-12-16 Thread Jonathan Pryor
On Dec 16, 2011, at 5:24 AM, Martyn Wendon wrote: > So we're working on reducing application load time at the moment What device are you running this on? Unless you're providing a custom Application type and doing a ton of work within Application.OnCreate() or BroadcastReceiver.OnCreate(), I

Re: [mono-android] Automatic activity start

2011-12-16 Thread Martyn Wendon
To: monodroid@lists.ximian.com Subject: Re: [mono-android] Automatic activity start Have you tried using Android.Content.Intent.CategoryHome instead of Android.Content.Intent.CategoryDefault ? Martyn Wendon wrote > > -Original Message- > From: monodroid-bounces@.ximian >

Re: [mono-android] Automatic activity start

2011-12-15 Thread riteshsahu
2011 17:03 > To: Discussions related to Mono for Android > Subject: Re: [mono-android] Automatic activity start > > On Dec 15, 2011, at 11:54 AM, Martyn Wendon wrote: >> Can anybody see any problem with the following? >> >>

Re: [mono-android] Automatic activity start

2011-12-15 Thread Martyn Wendon
athan Pryor Sent: 15 December 2011 17:03 To: Discussions related to Mono for Android Subject: Re: [mono-android] Automatic activity start On Dec 15, 2011, at 11:54 AM, Martyn Wendon wrote: > Can anybody see any problem with the following? > > [Broa

Re: [mono-android] Automatic activity start

2011-12-15 Thread Jonathan Pryor
On Dec 15, 2011, at 11:54 AM, Martyn Wendon wrote: > Can anybody see any problem with the following? > > [BroadcastReceiver] > [IntentFilter(new[] { Android.Content.Intent.ActionBootCompleted }, > Categories = new[] { Android.Content.Intent.CategoryDefault } > )] > pub

[mono-android] Automatic activity start

2011-12-15 Thread Martyn Wendon
Can anybody see any problem with the following? [BroadcastReceiver] [IntentFilter(new[] { Android.Content.Intent.ActionBootCompleted }, Categories = new[] { Android.Content.Intent.CategoryDefault } )] public class BootReceiver : BroadcastReceiver {