From e3ac610efde5523c73f06ef15d44fe1a1a48e554 Mon Sep 17 00:00:00 2001 From: Tobias Reski Date: Mon, 22 Nov 2021 17:14:05 +0100 Subject: [PATCH] Adjusted path prefix for android deeplinking in all projects --- LastenradBayern/TINK.Android/MainActivity.cs | 8 ++++---- Meinkonrad/TINK.Android/MainActivity.cs | 8 ++++---- TINK/TINK.Android/MainActivity.cs | 4 ++-- 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/LastenradBayern/TINK.Android/MainActivity.cs b/LastenradBayern/TINK.Android/MainActivity.cs index 277013b..bcd3b3b 100644 --- a/LastenradBayern/TINK.Android/MainActivity.cs +++ b/LastenradBayern/TINK.Android/MainActivity.cs @@ -14,15 +14,15 @@ namespace TINK.Droid [IntentFilter(new[] { Intent.ActionView }, Categories = new[] { Intent.ActionView, Intent.CategoryBrowsable, Intent.CategoryDefault }, DataScheme = "https", - DataHost = "sharee.bike", // TODO: Adjust to correct domain - DataPathPrefix = "/", + DataHost = "sharee.bike", + DataPathPrefix = "/lastenrad", AutoVerify = true)] [IntentFilter(new[] { Intent.ActionView }, Categories = new[] { Intent.ActionView, Intent.CategoryBrowsable, Intent.CategoryDefault }, DataScheme = "http", - DataHost = "sharee.bike", // TODO: Adjust to correct domain - DataPathPrefix = "/", + DataHost = "sharee.bike", + DataPathPrefix = "/lastenrad", AutoVerify = true)] public class MainActivity : global::Xamarin.Forms.Platform.Android.FormsAppCompatActivity diff --git a/Meinkonrad/TINK.Android/MainActivity.cs b/Meinkonrad/TINK.Android/MainActivity.cs index 0d8860d..6618f59 100644 --- a/Meinkonrad/TINK.Android/MainActivity.cs +++ b/Meinkonrad/TINK.Android/MainActivity.cs @@ -14,15 +14,15 @@ namespace TINK.Droid [IntentFilter(new[] { Intent.ActionView }, Categories = new[] { Intent.ActionView, Intent.CategoryBrowsable, Intent.CategoryDefault }, DataScheme = "https", - DataHost = "sharee.bike", // TODO: Adjust to correct domain - DataPathPrefix = "/", + DataHost = "sharee.bike", + DataPathPrefix = "/meinkonrad", AutoVerify = true)] [IntentFilter(new[] { Intent.ActionView }, Categories = new[] { Intent.ActionView, Intent.CategoryBrowsable, Intent.CategoryDefault }, DataScheme = "http", - DataHost = "sharee.bike", // TODO: Adjust to correct domain - DataPathPrefix = "/", + DataHost = "sharee.bike", + DataPathPrefix = "/meinkonrad", AutoVerify = true)] public class MainActivity : global::Xamarin.Forms.Platform.Android.FormsAppCompatActivity diff --git a/TINK/TINK.Android/MainActivity.cs b/TINK/TINK.Android/MainActivity.cs index 998d594..8f0a70e 100644 --- a/TINK/TINK.Android/MainActivity.cs +++ b/TINK/TINK.Android/MainActivity.cs @@ -15,14 +15,14 @@ namespace TINK.Droid Categories = new[] { Intent.ActionView, Intent.CategoryBrowsable, Intent.CategoryDefault }, DataScheme = "https", DataHost = "sharee.bike", - DataPathPrefix = "/", + DataPathPrefix = "/sharee", AutoVerify = true)] [IntentFilter(new[] { Intent.ActionView }, Categories = new[] { Intent.ActionView, Intent.CategoryBrowsable, Intent.CategoryDefault }, DataScheme = "http", DataHost = "sharee.bike", - DataPathPrefix = "/", + DataPathPrefix = "/sharee", AutoVerify = true)] public class MainActivity : global::Xamarin.Forms.Platform.Android.FormsAppCompatActivity