I'm implementing the deeplink function in Xamarin. The function didn't work as I expeceted.
If I click on a link in my Google Keep App it won't navigate to my app whent it on PAUSED mode (app is in the background). Instead, it open an Activity right in the Google Keep app. So, is there a away to resume my app after click on the deeplink on Keep Note app.
My current config on the HomeActivity.cs
:
[IntentFilter(new[] { Intent.ActionView },
Categories = new[] { Intent.CategoryBrowsable, Intent.CategoryDefault },
DataScheme = "https",
DataHost = "example",
DataPathPrefix = "",
AutoVerify = true)
]
public class HomeActivity : BaseActivity
{
...
}