Exemple #1
0
            /// <summary>
            /// Check if the device supports the feature, else false.
            /// </summary>
            /// <returns><c>true</c> if the device supports the feature; otherwise, <c>false</c>.</returns>
            /// <param name="feature">Feature to check.</param>
            public static bool HasSystemFeature(string feature)
            {
                if (AGUtils.IsNotAndroidCheck())
                {
                    return(false);
                }

                return(AGUtils.HasSystemFeature(feature));
            }