From 94c2e70e2d7fbed28ef23a0c94f68fe2a38fc165 Mon Sep 17 00:00:00 2001 From: Ryan Wilson Date: Mon, 9 Apr 2018 12:49:14 -0400 Subject: Remove iOS 7 Deprecation message. --- Firebase/Core/FIRApp.m | 17 ----------------- 1 file changed, 17 deletions(-) (limited to 'Firebase/Core') diff --git a/Firebase/Core/FIRApp.m b/Firebase/Core/FIRApp.m index c2ce28e..92163b1 100644 --- a/Firebase/Core/FIRApp.m +++ b/Firebase/Core/FIRApp.m @@ -133,23 +133,6 @@ static NSMutableDictionary *sLibraryVersions; [FIRApp sendNotificationsToSDKs:sDefaultApp]; sDefaultApp.alreadySentConfigureNotification = YES; } - - if (![FIRAppEnvironmentUtil isFromAppStore]) { - // Support for iOS 7 has been deprecated, but will continue to function for the time being. - // Log a notice for developers who are still targeting iOS 7 as the minimum OS version - // supported. - dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_BACKGROUND, 0), ^{ - NSDictionary *info = [[NSBundle mainBundle] infoDictionary]; - - NSString *minVersion = info[@"MinimumOSVersion"]; - if ([minVersion hasPrefix:@"7."]) { - FIRLogNotice(kFIRLoggerCore, @"I-COR000026", - @"Support for iOS 7 is deprecated and will " - @"stop working in the future. Please upgrade your app to target iOS 8 or " - @"above."); - } - }); - } } } -- cgit v1.2.3