Hi,

I want to send an intent from a crash handler [ crash(String tag,
Throwable t) in RuntimeInit.java) ] to an activity (stand alone
appllication)

I tried to send it from above handler as follows..

Intent intent = new Intent
("com.sonyericsson.android.bugreport.action.START_MYAPP");
               intent.setFlags(Intent.MY_ACTIVITY_NEW_TASK);
               ActivityManagerNative.getDefault().startActivity
(intent);

but i failed to send an intent to my application..

Can i send an intent to my application fro RuntimeInit.java handlers?

Thanks in advance!

-Ram

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

Reply via email to