BUG001: I'm sorry, * * * has stopped running
Online search problems For many reasons, some people say that things cache is not enough, as a developer, need to solve the problem from the code
For example, this time you encounter a " sorry, Instant has stopped running", instant is an app that is called by a gesture-aware app and does not set the action value by intent communication. The app that launches this instant needs the action's not empty, so error.
Workaround: In the gesture-aware app, initialize the intent instance method, you should set an action value
such as:
Intent i = new Intent ();
I.setclassname (Pkgname,clsname);
I.setflags (Intent.flag_activity_new_task);
I.setaction ("Android.intent.action.MAIN");
Summary: If you encounter this error, you should consider the launch of an APK, is not the need for an action value, and the other apk just did not set this value in the communication of the intent.
Andoid Source Bug Modification Collection--keep updating