From 3fd6842d25c50561b0703b8b09fbe4f7d03fc633 Mon Sep 17 00:00:00 2001 From: Scott Lovegrove Date: Mon, 2 Dec 2013 22:23:38 +0000 Subject: [PATCH] Updated readme to include protocol instructions --- README.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 4b77667..a19dd02 100644 --- a/README.md +++ b/README.md @@ -24,6 +24,13 @@ The helper also allows your app to send a callback URI to the Pocket client too, ## Use in Pocket Clients ## This helper will allow you to easily check a url that is passed to your app and detect if it's a Pocket request, and if it is, it will give you an object that you can then use in your own app. +Because this all takes advantage of custom URI schemes, you need to make sure you've registered the common scheme in your app's manifest file. + +After the tag, and if you haven't already got the Extensions tag, add that, then include the following: +```xml + +``` + In your UriMapper, you will have code similar to this: ```c# @@ -42,4 +49,4 @@ if (PocketHelper.HasPocketItem(uri)) return new Uri("AddMultiplePage.xaml", UriKind.Relative); } } -``` \ No newline at end of file +```