I understand that, but per the referenced post, for whatever reason the 'startActivity()' method *is* occasionally throwing an ActivityNotFoundException for a validly defined (and working on other clients) activity - **exactly** the same APK - working well on dozens (hundreds) of G1's - throwing the exception on one.
I don't know if this is possibly caused by a problem reading the manifest at startup, or for some other reason (I see other issues possibly related to reading the package - per http://groups.google.com/group/android-developers/browse_thread/thread/8d20aadddd2e1203?hl=en# ). Perhaps you could answer this question - I am willing to step through the source, but once java goes "native" the debugger loses all control, and when the method returns the error has already occurred. Assuming I have all the source (I do) is is possible to debug past the native call? Doug On Jun 26, 5:28 pm, Dianne Hackborn <[email protected]> wrote: > Activities can't throw exceptions back to you. Any exceptions they throw > will be handled in their own process, crashing their own application. > > > > On Fri, Jun 26, 2009 at 3:29 PM, Doug <[email protected]> wrote: > > > So, what should we do when the activity actually *does* exist, but for > > reasons of its own Android decides to throw this exception anyway? > > > Ref: > >http://groups.google.com/group/android-developers/browse_thread/threa... > > > On Jun 23, 12:18 pm, Dianne Hackborn <[email protected]> wrote: > > > If you know for sure the activity will exist, there is no need to catch > > the > > > exception. > > > > On Tue, Jun 23, 2009 at 11:49 AM, n179911 <[email protected]> wrote: > > > > > The JavaDoc of Context's public abstract void startActivity (Intent > > > > intent) said: > > > > > This method throws ActivityNotFoundException if there was no Activity > > > > found to run the given Intent. > > > > > But when I look at the android source code, it does not catch > > > > ActivityNotFoundException. > > > > > For example in AlarmClock.java: > > > > > digitalClock.setOnClickListener(new OnClickListener() { > > > > public void onClick(View v) { > > > > if (true) { > > > > Intent intent = new > > > > Intent(AlarmClock.this, SetAlarm.class); > > > > intent.putExtra(Alarms.ID, id); > > > > startActivityForResult(intent, SET_ALARM); > > > > } else { > > > > // TESTING: immediately pop alarm > > > > Intent fireAlarm = new > > > > Intent(AlarmClock.this, AlarmAlert.class); > > > > fireAlarm.putExtra(Alarms.ID, id); > > > > > fireAlarm.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); > > > > startActivity(fireAlarm); > > > > } > > > > } > > > > }); > > > > > Can you please tell me what is the code which handles the case when > > > > there is no activity for that intent? > > > > > Thank you. > > > > -- > > > Dianne Hackborn > > > Android framework engineer > > > [email protected] > > > > Note: please don't send private questions to me, as I don't have time to > > > provide private support, and so won't reply to such e-mails. All such > > > questions should be posted on public forums, where I and others can see > > and > > > answer them. > > -- > Dianne Hackborn > Android framework engineer > [email protected] > > Note: please don't send private questions to me, as I don't have time to > provide private support, and so won't reply to such e-mails. All such > questions should be posted on public forums, where I and others can see and > answer them. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en -~----------~----~----~----~------~----~------~--~---

