From f4540ca52be0706de534998e03260deb87fe737f Mon Sep 17 00:00:00 2001 From: Nora Trapp Date: Fri, 22 May 2020 15:48:39 -0700 Subject: [PATCH] EOL iOS 10 (evergreen build) --- SignalServiceKit/src/Util/AppExpiry.swift | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/SignalServiceKit/src/Util/AppExpiry.swift b/SignalServiceKit/src/Util/AppExpiry.swift index 3e7275fd62..ffdba0085d 100644 --- a/SignalServiceKit/src/Util/AppExpiry.swift +++ b/SignalServiceKit/src/Util/AppExpiry.swift @@ -1,5 +1,5 @@ // -// Copyright (c) 2019 Open Whisper Systems. All rights reserved. +// Copyright (c) 2020 Open Whisper Systems. All rights reserved. // import Foundation @@ -36,10 +36,10 @@ public class AppExpiry: NSObject { /// installable on their device and show a special banner /// that indicates we will no longer support their device. /// - /// Currently, only iOS 10 and greater are officially supported. + /// Currently, only iOS 11 and greater are officially supported. @objc public static var isEndOfLifeOSVersion: Bool { - if #available(iOS 10, *) { + if #available(iOS 11, *) { return false } else { return true