| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
- /*
- * Copyright 2018 Google
- *
- * 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 "ViewController.h"
- #import <FirebaseCore/FirebaseCore.h>
- #import <FirebaseDynamicLinks/FIRDynamicLinks.h>
- @implementation AppDelegate
- - (BOOL)application:(UIApplication *)application
- didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
- [FIRApp configure];
- self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
- UINavigationController *navController = [[UINavigationController alloc]
- initWithRootViewController:[[ViewController alloc] initWithNibName:nil bundle:nil]];
- self.window.rootViewController = navController;
- [self.window makeKeyAndVisible];
- #ifdef DEBUG
- [FIRDynamicLinks performDiagnosticsWithCompletion:nil];
- #endif // DEBUG
- return YES;
- }
- - (BOOL)application:(UIApplication *)app
- openURL:(NSURL *)url
- options:(NSDictionary<NSString *, id> *)options {
- FIRDynamicLink *dynamicLink = [[FIRDynamicLinks dynamicLinks] dynamicLinkFromCustomSchemeURL:url];
- if (dynamicLink) {
- [self _showDynamicLinkInfo:dynamicLink];
- }
- return YES;
- }
- - (BOOL)application:(UIApplication *)application
- openURL:(NSURL *)url
- sourceApplication:(NSString *)sourceApplication
- annotation:(id)annotation {
- return [self application:application openURL:url options:@{}];
- }
- - (BOOL)application:(UIApplication *)application
- continueUserActivity:(NSUserActivity *)userActivity
- restorationHandler:
- #if __has_include(<UIKit/UIUserActivity.h>)
- (void (^)(NSArray<id<UIUserActivityRestoring>> *_Nullable))restorationHandler {
- #else
- (void (^)(NSArray *))restorationHandler {
- #endif
- BOOL handled = [[FIRDynamicLinks dynamicLinks]
- handleUniversalLink:userActivity.webpageURL
- completion:^(FIRDynamicLink *_Nullable dynamicLink, NSError *_Nullable error) {
- [self _showDynamicLinkInfo:dynamicLink];
- }];
- if (!handled) {
- // Show the deep link URL from userActivity.
- NSLog(@"Unhandled link %@", userActivity.webpageURL);
- }
- return handled;
- }
- - (void)_showDynamicLinkInfo:(FIRDynamicLink *)dynamicLink {
- NSLog(@"Got dynamic link %@", dynamicLink);
- UIAlertController *alertVC = [UIAlertController
- alertControllerWithTitle:@"Got Dynamic Link!"
- message:[NSString stringWithFormat:@"URL [%@], matchType [%ld], "
- @"minimumAppVersion [%@], utmParams [%@]",
- dynamicLink.url,
- (unsigned long)dynamicLink.matchType,
- dynamicLink.minimumAppVersion,
- dynamicLink.utmParametersDictionary]
- preferredStyle:UIAlertControllerStyleAlert];
- [alertVC addAction:[UIAlertAction actionWithTitle:@"Dismiss"
- style:UIAlertActionStyleCancel
- handler:NULL]];
- [[UIApplication sharedApplication].keyWindow.rootViewController presentViewController:alertVC
- animated:YES
- completion:NULL];
- }
- @end
|