I have an app that has intent filters set to CategoryHome
and CategoryDefault
[IntentFilter
(
new[]
{
Intent.ActionMain
},
Categories = new[]
{
Intent.CategoryHome,
Intent.CategoryDefault
}
)
]
public class MainActivity : Activity
...
Is it possible to change this on the fly?