aboutsummaryrefslogtreecommitdiffhomepage
path: root/Example/Core
diff options
context:
space:
mode:
authorGravatar davidair <davidair@users.noreply.github.com>2017-07-25 11:28:17 -0400
committerGravatar GitHub <noreply@github.com>2017-07-25 11:28:17 -0400
commitf7fc2bb573564aae1d5f0a9d4b354ea348e3a601 (patch)
tree0a5c8345265b8656297c842ef688dbb50db25491 /Example/Core
parentf1fbbf3adb4c214df7f9128784d4e9a154dcc2d4 (diff)
Moving sMessageCodeRegex initialization into #ifdef DEBUG to remove the init cost, adding [FIRApp configure] to the Core example (#150)
Diffstat (limited to 'Example/Core')
-rw-r--r--Example/Core/App/iOS/FIRAppDelegate.m4
1 files changed, 3 insertions, 1 deletions
diff --git a/Example/Core/App/iOS/FIRAppDelegate.m b/Example/Core/App/iOS/FIRAppDelegate.m
index 0ecfdea..8819126 100644
--- a/Example/Core/App/iOS/FIRAppDelegate.m
+++ b/Example/Core/App/iOS/FIRAppDelegate.m
@@ -14,11 +14,13 @@
#import "FIRAppDelegate.h"
+@import FirebaseCommunity;
+
@implementation FIRAppDelegate
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
- // Override point for customization after application launch.
+ [FIRApp configure];
return YES;
}