| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- /*
- * Copyright 2021 Google LLC
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
- #import "AppDelegate.h"
- #import "SignInViewController.h"
- @import GoogleSignIn;
- @implementation AppDelegate
- #pragma mark Object life-cycle.
- - (BOOL)application:(UIApplication *)application
- didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
- // Restore any previous sign-in session at app launch before displaying main view. If the restore
- // succeeds, we'll have a currentUser and the view will be able to draw its UI for the signed-in
- // state. If the restore fails, currentUser will be nil and we'll draw the signed-out state
- // prompting the user to sign in.
- [GIDSignIn.sharedInstance restorePreviousSignInWithCallback:^(GIDGoogleUser * _Nullable user,
- NSError * _Nullable error) {
- self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
- SignInViewController *masterViewController =
- [[SignInViewController alloc] initWithNibName:@"SignInViewController" bundle:nil];
- self.navigationController =
- [[UINavigationController alloc] initWithRootViewController:masterViewController];
- self.window.rootViewController = self.navigationController;
- [self.window makeKeyAndVisible];
- }];
- return YES;
- }
- - (BOOL)application:(UIApplication *)app
- openURL:(NSURL *)url
- options:(NSDictionary<UIApplicationOpenURLOptionsKey,id> *)options {
- return [GIDSignIn.sharedInstance handleURL:url];
- }
- @end
|