private void DrawAndroidSettings()
        {
            var androidSettingsText = GetBoldLabel(" AndroidManifest.xml and other Android Settings [?]", "These settings will modify your AndroidManifest.xml", GetSocialEditorUtils.AndroidIcon);

            GetSocialEditorUtils.BeginSetSmallIconSize();
            ShowAndroidSettings = EditorGUILayout.Foldout(ShowAndroidSettings, androidSettingsText);
            GetSocialEditorUtils.EndSetSmallIconSize();
            if (ShowAndroidSettings)
            {
                AndroidManifestHelper.DrawManifestCheckerGUI();
            }
        }
 void OnEnable()
 {
     AndroidManifestHelper.Refresh();
 }