Last active
December 5, 2019 15:39
-
-
Save Muhammadyoussef/5c9cdbc0273a7517b4d0b7d8324bb518 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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