From 1103354de347e41605a971eb5a26fdbb2d64bb1e Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Tue, 16 Apr 2019 07:44:18 -0400 Subject: [PATCH] new constants for mobile app prefixes --- src/Core/Constants.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/Core/Constants.cs b/src/Core/Constants.cs index eca671520..1047890ce 100644 --- a/src/Core/Constants.cs +++ b/src/Core/Constants.cs @@ -2,7 +2,10 @@ { public static class Constants { + public const string AndroidAppProtocol = "androidapp://"; + public const string iOSAppProtocol = "iosapp://"; public static string LockOptionKey = "lockOption"; public static string PinProtectedKey = "pinProtectedKey"; + public static string DefaultUriMatch = "defaultUriMatch"; } }