Hi, i have a problem with DeepLinking.
I have installed NuGet Package AndroidAppLinks, Firabase. When i receive a DeepLink, the app is opened but NEVER execute the code in protected override void OnAppLinkRequestReceived(Uri uri).
I have the MainActivity with
[IntentFilter(new[] { Intent.ActionView },
DataScheme = "https",
DataHost = "blablabla",
DataPathPrefix = "/*",
AutoVerify = true,
Categories = new[] { Intent.ActionView, Intent.CategoryDefault, Intent.CategoryBrowsable })]
and
[IntentFilter(new[] { Intent.ActionView },
DataScheme = "http",
DataHost = "blablabla",
DataPathPrefix = "/*",
AutoVerify = true,
Categories = new[] { Intent.ActionView, Intent.CategoryDefault, Intent.CategoryBrowsable })]
I try with other version from NuGet Package, i try to reset the FingerPrint (SHA and SHA256 in Firebase), but nothing work.
The problem is that the previus week was working and the code is the same.
Does anyone know if anything has changed in Google or Firebase?