Files
react-native-notifications/example/ios/NotificationsExampleApp/AppDelegate.h
aboelbisher 498dd34b70 [WIP] iOS deprecated API replacement (#295)
* IOS deprecated API replacement
2019-03-18 11:24:55 +02:00

20 lines
565 B
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 <UIKit/UIKit.h>
#import <PushKit/PushKit.h>
@import UserNotifications;
@interface AppDelegate : UIResponder <UIApplicationDelegate, PKPushRegistryDelegate, UNUserNotificationCenterDelegate>
@property (nonatomic, strong) UIWindow *window;
@end