public string GetIntentFilterName(PropertyTemplate intent)
        {
            List <PropertyTemplate> actions = intent.GetPropertiesWithTag("action");

            if (actions.Count > 0)
            {
                return(actions[0].GetValue("android:name"));
            }
            else
            {
                return(string.Empty);
            }
        }