/// <summary>
        /// This is a polite way of saying the developer made a mistake
        /// while setting up or calling the license checker library.
        /// Please examine the error code and fix the error.
        /// </summary>
        /// <param name="errorCode"></param>
        public void ApplicationError(LicenseCheckerErrorCode errorCode)
        {
            if (IsFinishing)
            {
                // Don't update UI if Activity is finishing.
                return;
            }

            var errorString = GetString(Resource.String.application_error);

            DisplayResult(string.Format(errorString, errorCode));
        }
Beispiel #2
0
 public void ApplicationError(LicenseCheckerErrorCode errorCode)
 {
     //("MainActivity.ApplicationError errorCode:" + errorCode.ToString());
 }
Beispiel #3
0
        public void ApplicationError([GeneratedEnum] LicenseCheckerErrorCode errorCode)
        {
            var deviceInfoHelper = DependencyService.Resolve <IDeviceInfoHelper>();

            deviceInfoHelper.IsLicensed = false;
        }