summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Platform.Android.AppLinks
diff options
context:
space:
mode:
authorRui Marinho <me@ruimarinho.net>2016-09-18 19:24:44 +0100
committerJason Smith <jason.smith@xamarin.com>2016-09-18 11:24:44 -0700
commitd4efe0a37ea87967e38a7d0325df8d84e1c125fc (patch)
treee8ea30760f1a011599e73ec1aea9e3e2349edc1f /Xamarin.Forms.Platform.Android.AppLinks
parent7d66ed0aada19c7d320186a1a34907d77d38ab0d (diff)
downloadxamarin-forms-d4efe0a37ea87967e38a7d0325df8d84e1c125fc.tar.gz
xamarin-forms-d4efe0a37ea87967e38a7d0325df8d84e1c125fc.tar.bz2
xamarin-forms-d4efe0a37ea87967e38a7d0325df8d84e1c125fc.zip
[Controls] Update Insights and UITest packages and fix warnings (#361)
* [Controls] Update Insights and UITest packages * Update Xamarin.Forms.Platform.Android (Forwarders).csproj
Diffstat (limited to 'Xamarin.Forms.Platform.Android.AppLinks')
-rw-r--r--Xamarin.Forms.Platform.Android.AppLinks/AndroidAppLinks.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Xamarin.Forms.Platform.Android.AppLinks/AndroidAppLinks.cs b/Xamarin.Forms.Platform.Android.AppLinks/AndroidAppLinks.cs
index b1639da7..975e65fb 100644
--- a/Xamarin.Forms.Platform.Android.AppLinks/AndroidAppLinks.cs
+++ b/Xamarin.Forms.Platform.Android.AppLinks/AndroidAppLinks.cs
@@ -91,11 +91,11 @@ namespace Xamarin.Forms.Platform.Android.AppLinks
{
if (appLink.IsLinkActive)
{
- Statuses resultStartAgain = await AppIndex.AppIndexApi.StartAsync(_client, indexAction);
+ await AppIndex.AppIndexApi.StartAsync(_client, indexAction);
}
else
{
- Statuses resultEnd = await AppIndex.AppIndexApi.EndAsync(_client, indexAction);
+ await AppIndex.AppIndexApi.EndAsync(_client, indexAction);
}
}
};