117 lines
5.2 KiB
Objective-C
117 lines
5.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 <AVFoundation/AVFoundation.h>
|
|
#import <React/RCTBundleURLProvider.h>
|
|
#import <React/RCTRootView.h>
|
|
#import <React/RCTLinkingManager.h>
|
|
#if __has_include(<React/RNSentry.h>)
|
|
#import <React/RNSentry.h> // This is used for versions of react >= 0.40
|
|
#else
|
|
#import "RNSentry.h" // This is used for versions of react < 0.40
|
|
#endif
|
|
#import "RCCManager.h"
|
|
#import "RNNotifications.h"
|
|
#import "SessionManager.h"
|
|
|
|
@implementation AppDelegate
|
|
|
|
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
|
|
{
|
|
// Clear keychain on first run in case of reinstallation
|
|
if (![[NSUserDefaults standardUserDefaults] objectForKey:@"FirstRun"]) {
|
|
|
|
NSString *service = [[NSBundle mainBundle] bundleIdentifier];
|
|
NSDictionary *query = @{
|
|
(__bridge NSString *)kSecClass: (__bridge id)(kSecClassGenericPassword),
|
|
(__bridge NSString *)kSecAttrService: service,
|
|
(__bridge NSString *)kSecReturnAttributes: (__bridge id)kCFBooleanTrue,
|
|
(__bridge NSString *)kSecReturnData: (__bridge id)kCFBooleanFalse
|
|
};
|
|
|
|
SecItemDelete((__bridge CFDictionaryRef) query);
|
|
|
|
[[NSUserDefaults standardUserDefaults] setValue:@YES forKey:@"FirstRun"];
|
|
[[NSUserDefaults standardUserDefaults] synchronize];
|
|
}
|
|
|
|
NSURL *jsCodeLocation;
|
|
|
|
jsCodeLocation = [[RCTBundleURLProvider sharedSettings] jsBundleURLForBundleRoot:@"index" fallbackResource:nil];
|
|
|
|
self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds];
|
|
self.window.backgroundColor = [UIColor whiteColor];
|
|
[[RCCManager sharedInstance] initBridgeWithBundleURL:jsCodeLocation launchOptions:launchOptions];
|
|
[[AVAudioSession sharedInstance] setCategory:AVAudioSessionCategoryPlayback error: nil];
|
|
|
|
return YES;
|
|
}
|
|
|
|
// Required to register for notifications
|
|
- (void)application:(UIApplication *)application didRegisterUserNotificationSettings:(UIUserNotificationSettings *)notificationSettings
|
|
{
|
|
[RNNotifications didRegisterUserNotificationSettings:notificationSettings];
|
|
}
|
|
|
|
- (void)application:(UIApplication *)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken
|
|
{
|
|
[RNNotifications didRegisterForRemoteNotificationsWithDeviceToken:deviceToken];
|
|
}
|
|
|
|
- (void)application:(UIApplication *)application didFailToRegisterForRemoteNotificationsWithError:(NSError *)error {
|
|
[RNNotifications didFailToRegisterForRemoteNotificationsWithError:error];
|
|
}
|
|
|
|
// Required for the notification event.
|
|
- (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)notification {
|
|
[RNNotifications didReceiveRemoteNotification:notification];
|
|
}
|
|
|
|
// Required for the localNotification event.
|
|
- (void)application:(UIApplication *)application didReceiveLocalNotification:(UILocalNotification *)notification
|
|
{
|
|
[RNNotifications didReceiveLocalNotification:notification];
|
|
}
|
|
|
|
// Required for the notification actions.
|
|
- (void)application:(UIApplication *)application handleActionWithIdentifier:(NSString *)identifier forLocalNotification:(UILocalNotification *)notification withResponseInfo:(NSDictionary *)responseInfo completionHandler:(void (^)())completionHandler
|
|
{
|
|
[RNNotifications handleActionWithIdentifier:identifier forLocalNotification:notification withResponseInfo:responseInfo completionHandler:completionHandler];
|
|
}
|
|
|
|
- (void)application:(UIApplication *)application handleActionWithIdentifier:(NSString *)identifier forRemoteNotification:(NSDictionary *)userInfo withResponseInfo:(NSDictionary *)responseInfo completionHandler:(void (^)())completionHandler
|
|
{
|
|
[RNNotifications handleActionWithIdentifier:identifier forRemoteNotification:userInfo withResponseInfo:responseInfo completionHandler:completionHandler];
|
|
}
|
|
|
|
-(void)application:(UIApplication *)application handleEventsForBackgroundURLSession:(nonnull NSString *)identifier completionHandler:(nonnull void (^)(void))completionHandler {
|
|
[SessionManager sharedSession].savedCompletionHandler = completionHandler;
|
|
[[SessionManager sharedSession] createSessionForRequestRequest:identifier];
|
|
}
|
|
|
|
// Required for deeplinking
|
|
|
|
- (BOOL)application:(UIApplication *)application openURL:(NSURL *)url
|
|
sourceApplication:(NSString *)sourceApplication annotation:(id)annotation
|
|
{
|
|
return [RCTLinkingManager application:application openURL:url
|
|
sourceApplication:sourceApplication annotation:annotation];
|
|
}
|
|
|
|
// Only if your app is using [Universal Links](https://developer.apple.com/library/prerelease/ios/documentation/General/Conceptual/AppSearch/UniversalLinks.html).
|
|
- (BOOL)application:(UIApplication *)application continueUserActivity:(NSUserActivity *)userActivity
|
|
restorationHandler:(void (^)(NSArray * _Nullable))restorationHandler
|
|
{
|
|
return [RCTLinkingManager application:application
|
|
continueUserActivity:userActivity
|
|
restorationHandler:restorationHandler];
|
|
}
|
|
|
|
@end
|