Skip to content
This repository has been archived by the owner on Apr 29, 2024. It is now read-only.

Commit

Permalink
[Notifications] Fix ambiguous TaskStackBuilder ref
Browse files Browse the repository at this point in the history
  • Loading branch information
pjcollins committed Dec 17, 2018
1 parent d5efc89 commit ee62416
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Notifications/Notifications.Android/MainActivity.cs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ private void ButtonOnClick (object sender, EventArgs eventArgs)
Intent resultIntent = new Intent (this, typeof(SecondActivity));
resultIntent.PutExtras (valuesForActivity); // Pass some values to SecondActivity.

TaskStackBuilder stackBuilder = TaskStackBuilder.Create (this);
var stackBuilder = Android.Support.V4.App.TaskStackBuilder.Create (this);
stackBuilder.AddParentStack (Class.FromType (typeof(SecondActivity)));
stackBuilder.AddNextIntent (resultIntent);

Expand Down

0 comments on commit ee62416

Please sign in to comment.