From 378b5258cd87a08c2d114763891b04ea2f54bf20 Mon Sep 17 00:00:00 2001 From: Bharat Mediratta Date: Thu, 29 Dec 2016 14:55:29 -0800 Subject: [PATCH] Fix broken build. The merge of 73b7302 and 82dc3da resulted in an accidental deletion of mainAppBundleIdentifier from the NSBundle extension. --- Loop/Extensions/NSBundle.swift | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Loop/Extensions/NSBundle.swift b/Loop/Extensions/NSBundle.swift index 333bf6d20c..e9202624d6 100644 --- a/Loop/Extensions/NSBundle.swift +++ b/Loop/Extensions/NSBundle.swift @@ -22,6 +22,10 @@ extension Bundle { return String(format: NSLocalizedString("%1$@ v%2$@", comment: "The format string for the app name and version number. (1: bundle name)(2: bundle version)"), bundleDisplayName, shortVersionString) } + private var mainAppBundleIdentifier: String? { + return object(forInfoDictionaryKey: "MainAppBundleIdentifier") as? String + } + var appGroupSuiteName: String { return object(forInfoDictionaryKey: "AppGroupIdentifier") as! String }