Created
April 16, 2019 13:53
-
-
Save rcerrejon/06d0eec924ec410c394334856f47070e to your computer and use it in GitHub Desktop.
RN - Nullable Build Error Fix
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Copyright (c) 2015-present, Facebook, Inc. | |
* | |
* This source code is licensed under the MIT license found in the | |
* LICENSE file in the root directory of this source tree. | |
*/ | |
#import <UIKit/UIKit.h> | |
#import <React/RCTEventEmitter.h> | |
@interface RCTLinkingManager : RCTEventEmitter | |
+ (BOOL)application:(UIApplication *_Nonnull)app | |
openURL:(NSURL *_Nonnull)URL | |
options:(NSDictionary<UIApplicationOpenURLOptionsKey,id> *_Nonnull)options; | |
+ (BOOL)application:(UIApplication *_Nonnull)application | |
openURL:(NSURL *_Nonnull)URL | |
sourceApplication:(NSString *_Nonnull)sourceApplication | |
annotation:(id _Nonnull )annotation; | |
+ (BOOL)application:(UIApplication *_Nonnull)application | |
continueUserActivity:(NSUserActivity *_Nonnull)userActivity | |
restorationHandler:(void (^_Nonnull)(NSArray * __nullable))restorationHandler; | |
@end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment