On Sun, Apr 15, 2012 at 8:45 AM, James Black <[email protected]> wrote: > I have it working, at the moment, by having this in my manifest: > <uses-sdk > android:minSdkVersion="7" > android:targetSdkVersion="9" /> > > So targeting SDK 11 or 18 leads to it to crash. > > And no, I just use > startActivity(intent); > > with these flags: > intent.setFlags(Intent.FLAG_ACTIVITY_SINGLE_TOP > | Intent.FLAG_ACTIVITY_CLEAR_TOP);
Use adb logcat, DDMS, or the DDMS perspective in Eclipse to examine LogCat and look at the stack trace associated with your "crash". -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://commonsware.com/blog | http://twitter.com/commonsguy _The Busy Coder's Guide to *Advanced* Android Development_ Version 2.5 Available! -- 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

