/// <summary> /// Gets the (roughly accurate) app installation timestamp in local timezone. /// This timestamp is recorded when the Easy Mobile runtime is initalized for the first time. /// If this method is called before that, Epoch time (01/01/1970) will be returned since /// no value was stored. /// </summary> /// <returns>The app installation time in local timezone.</returns> public static DateTime GetAppInstallationTime() { return(RuntimeManager.GetAppInstallationTimestamp()); }