I start the implicit activity in this way:
Intent launchIntent = context.getPackageManager().getLaunchIntentForPackage(miniGameSceneStatus.getPackageName());
context.startActivity(launchIntent);
If this activity finish I receive a broadcast, but if the activity crashes I can't see anything except it returns to the first activity without any problem.
Is there any way to know what is happening in the second activity?