Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Muhammadyoussef/5c9cdbc0273a7517b4d0b7d8324bb518 to your computer and use it in GitHub Desktop.
Save Muhammadyoussef/5c9cdbc0273a7517b4d0b7d8324bb518 to your computer and use it in GitHub Desktop.
ComponentName component = r.intent.getComponent();
if (component == null) {
component = r.intent.resolveActivity(
mInitialApplication.getPackageManager());
r.intent.setComponent(component);
}
if (r.activityInfo.targetActivity != null) {
component = new ComponentName(r.activityInfo.packageName,
r.activityInfo.targetActivity);
}
ContextImpl appContext = createBaseContextForActivity(r);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment