mirror of
https://github.com/status-im/react-native.git
synced 2025-01-20 14:29:16 +00:00
ff78a8de22
Summary: What existing problem does the pull request solve? Beginning in iOS9, Apple has deprecated `-application:openURL:sourceApplication:annotations:` `- (BOOL)application:(UIApplication *)application openURL:(NSURL *)url sourceApplication:(nullable NSString *)sourceApplication annotation:(id)annotation NS_DEPRECATED_IOS(4_2, 9_0, "Please use application:openURL:options:") __TVOS_PROHIBITED;` This PR uses the newly recommended method: `- (BOOL)application:(UIApplication *)app openURL:(NSURL *)url options:(NSDictionary<UIApplicationOpenURLOptionsKey, id> *)` while meanwhile, leaving the deprecated one for developers wishing to use the older `-application:openURL:sourceApplication:annotations:` for apps that support versions 8.x or less. Benefits will include: - [x] less warnings - [x] official deprecation should happen when iOS 11 is deployed - [x] TVOS support Closes https://github.com/facebook/react-native/pull/13615 Differential Revision: D4987980 Pulled By: javache fbshipit-source-id: ae07715a55ca627860262a9c8cf7df1e3c5e752b
119 lines
4.2 KiB
Objective-C
119 lines
4.2 KiB
Objective-C
/**
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
* All rights reserved.
|
|
*
|
|
* This source code is licensed under the BSD-style license found in the
|
|
* LICENSE file in the root directory of this source tree. An additional grant
|
|
* of patent rights can be found in the PATENTS file in the same directory.
|
|
*
|
|
*/
|
|
|
|
#import "AppDelegate.h"
|
|
|
|
#import <React/RCTBridge.h>
|
|
#import <React/RCTBundleURLProvider.h>
|
|
#import <React/RCTJavaScriptLoader.h>
|
|
#import <React/RCTLinkingManager.h>
|
|
#import <React/RCTRootView.h>
|
|
|
|
#if !TARGET_OS_TV
|
|
#import <React/RCTPushNotificationManager.h>
|
|
#endif
|
|
|
|
@interface AppDelegate() <RCTBridgeDelegate>
|
|
|
|
@end
|
|
|
|
@implementation AppDelegate
|
|
|
|
- (BOOL)application:(__unused UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
|
|
{
|
|
_bridge = [[RCTBridge alloc] initWithDelegate:self
|
|
launchOptions:launchOptions];
|
|
|
|
// Appetizer.io params check
|
|
NSDictionary *initProps = nil;
|
|
NSString *_routeUri = [[NSUserDefaults standardUserDefaults] stringForKey:@"route"];
|
|
if (_routeUri) {
|
|
initProps = @{@"exampleFromAppetizeParams": [NSString stringWithFormat:@"rntester://example/%@Example", _routeUri]};
|
|
}
|
|
|
|
RCTRootView *rootView = [[RCTRootView alloc] initWithBridge:_bridge
|
|
moduleName:@"RNTesterApp"
|
|
initialProperties:initProps];
|
|
|
|
self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds];
|
|
UIViewController *rootViewController = [UIViewController new];
|
|
rootViewController.view = rootView;
|
|
self.window.rootViewController = rootViewController;
|
|
[self.window makeKeyAndVisible];
|
|
return YES;
|
|
}
|
|
|
|
- (NSURL *)sourceURLForBridge:(__unused RCTBridge *)bridge
|
|
{
|
|
return [[RCTBundleURLProvider sharedSettings] jsBundleURLForBundleRoot:@"RNTester/js/RNTesterApp.ios"
|
|
fallbackResource:nil];
|
|
}
|
|
|
|
- (BOOL)application:(UIApplication *)app
|
|
openURL:(NSURL *)url
|
|
options:(NSDictionary<UIApplicationOpenURLOptionsKey,id> *)options
|
|
{
|
|
return [RCTLinkingManager application:app openURL:url options:options];
|
|
}
|
|
|
|
- (BOOL)application:(UIApplication *)application openURL:(NSURL *)url
|
|
sourceApplication:(NSString *)sourceApplication annotation:(id)annotation
|
|
{
|
|
return [RCTLinkingManager application:application openURL:url
|
|
sourceApplication:sourceApplication annotation:annotation];
|
|
}
|
|
|
|
- (void)loadSourceForBridge:(RCTBridge *)bridge
|
|
onProgress:(RCTSourceLoadProgressBlock)onProgress
|
|
onComplete:(RCTSourceLoadBlock)loadCallback
|
|
{
|
|
[RCTJavaScriptLoader loadBundleAtURL:[self sourceURLForBridge:bridge]
|
|
onProgress:onProgress
|
|
onComplete:loadCallback];
|
|
}
|
|
|
|
# pragma mark - Push Notifications
|
|
|
|
#if !TARGET_OS_TV
|
|
|
|
// Required to register for notifications
|
|
- (void)application:(__unused UIApplication *)application didRegisterUserNotificationSettings:(UIUserNotificationSettings *)notificationSettings
|
|
{
|
|
[RCTPushNotificationManager didRegisterUserNotificationSettings:notificationSettings];
|
|
}
|
|
|
|
// Required for the remoteNotificationsRegistered event.
|
|
- (void)application:(__unused UIApplication *)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken
|
|
{
|
|
[RCTPushNotificationManager didRegisterForRemoteNotificationsWithDeviceToken:deviceToken];
|
|
}
|
|
|
|
// Required for the remoteNotificationRegistrationError event.
|
|
- (void)application:(__unused UIApplication *)application didFailToRegisterForRemoteNotificationsWithError:(NSError *)error
|
|
{
|
|
[RCTPushNotificationManager didFailToRegisterForRemoteNotificationsWithError:error];
|
|
}
|
|
|
|
// Required for the remoteNotificationReceived event.
|
|
- (void)application:(__unused UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)notification
|
|
{
|
|
[RCTPushNotificationManager didReceiveRemoteNotification:notification];
|
|
}
|
|
|
|
// Required for the localNotificationReceived event.
|
|
- (void)application:(__unused UIApplication *)application didReceiveLocalNotification:(UILocalNotification *)notification
|
|
{
|
|
[RCTPushNotificationManager didReceiveLocalNotification:notification];
|
|
}
|
|
|
|
#endif
|
|
|
|
@end
|