Skip to content

Commit

Permalink
Add link to github issue explaining workaround.
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 237853286
  • Loading branch information
xian authored and copybara-robolectric committed Mar 11, 2019
1 parent f25ec77 commit 9ef6e60
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,8 @@ public Activity startActivitySync(final Intent intent) {
public ActivityController<? extends Activity> startActivitySyncInternal(Intent intent) {
ActivityInfo ai = intent.resolveActivityInfo(getTargetContext().getPackageManager(), 0);
if (ai == null) {
throw new RuntimeException("Unable to resolve activity for " + intent);
throw new RuntimeException("Unable to resolve activity for " + intent
+ " -- see https://github.com/robolectric/robolectric/pull/4736 for details");
}

Class<? extends Activity> activityClass;
Expand Down

0 comments on commit 9ef6e60

Please sign in to comment.