2016-02-22 22:04:42 +00:00
|
|
|
/**
|
2019-03-04 12:38:41 +00:00
|
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
2016-02-22 22:04:42 +00:00
|
|
|
* 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"
|
|
|
|
|
2017-09-09 15:14:40 +00:00
|
|
|
#import <asl.h>
|
2017-08-09 15:30:08 +00:00
|
|
|
#import "ReactNativeConfig.h"
|
2017-09-08 08:13:26 +00:00
|
|
|
#import "React/RCTLog.h"
|
2016-07-20 09:03:05 +00:00
|
|
|
#import "RCTBundleURLProvider.h"
|
2016-02-22 22:04:42 +00:00
|
|
|
#import "RCTRootView.h"
|
2018-08-23 01:54:29 +00:00
|
|
|
#import "RNSplashScreen.h"
|
2018-06-28 19:31:31 +00:00
|
|
|
#import "RCTLinkingManager.h"
|
2018-06-29 12:28:46 +00:00
|
|
|
#import <Firebase.h>
|
|
|
|
#import "RNFirebaseNotifications.h"
|
|
|
|
#import "RNFirebaseMessaging.h"
|
2017-08-30 09:34:30 +00:00
|
|
|
|
2016-02-22 22:04:42 +00:00
|
|
|
@implementation AppDelegate
|
|
|
|
|
|
|
|
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
|
|
|
|
{
|
2016-12-11 11:09:12 +00:00
|
|
|
signal(SIGPIPE, SIG_IGN);
|
2016-02-22 22:04:42 +00:00
|
|
|
NSURL *jsCodeLocation;
|
|
|
|
|
2018-06-29 12:28:46 +00:00
|
|
|
[FIRApp configure];
|
|
|
|
[RNFirebaseNotifications configure];
|
|
|
|
[application registerForRemoteNotifications];
|
|
|
|
|
|
|
|
|
2017-12-22 21:49:58 +00:00
|
|
|
/* Set logging level from React Native */
|
|
|
|
NSString *logLevel = [ReactNativeConfig envFor:@"LOG_LEVEL"];
|
|
|
|
if([logLevel isEqualToString:@"error"]){
|
|
|
|
RCTSetLogThreshold(RCTLogLevelError);
|
|
|
|
}
|
|
|
|
else if([logLevel isEqualToString:@"warn"]){
|
|
|
|
RCTSetLogThreshold(RCTLogLevelWarning);
|
|
|
|
}
|
|
|
|
else if([logLevel isEqualToString:@"info"]){
|
|
|
|
RCTSetLogThreshold(RCTLogLevelInfo);
|
|
|
|
}
|
|
|
|
else if([logLevel isEqualToString:@"debug"]){
|
|
|
|
RCTSetLogThreshold(RCTLogLevelTrace);
|
2017-09-08 08:13:26 +00:00
|
|
|
}
|
|
|
|
|
2019-03-04 12:38:41 +00:00
|
|
|
RCTBridge *bridge = [[RCTBridge alloc] initWithDelegate:self launchOptions:launchOptions];
|
|
|
|
RCTRootView *rootView = [[RCTRootView alloc] initWithBridge:bridge
|
2016-05-19 16:32:38 +00:00
|
|
|
moduleName:@"StatusIm"
|
2019-03-04 12:38:41 +00:00
|
|
|
initialProperties:nil];
|
2016-07-20 09:03:05 +00:00
|
|
|
rootView.backgroundColor = [[UIColor alloc] initWithRed:1.0f green:1.0f blue:1.0f alpha:1];
|
2017-08-30 09:34:30 +00:00
|
|
|
|
2016-02-22 22:04:42 +00:00
|
|
|
self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds];
|
|
|
|
UIViewController *rootViewController = [UIViewController new];
|
|
|
|
rootViewController.view = rootView;
|
|
|
|
self.window.rootViewController = rootViewController;
|
|
|
|
[self.window makeKeyAndVisible];
|
2018-08-23 01:54:29 +00:00
|
|
|
[RNSplashScreen show];
|
2017-08-30 09:34:30 +00:00
|
|
|
|
2016-02-22 22:04:42 +00:00
|
|
|
return YES;
|
|
|
|
}
|
|
|
|
|
2018-06-29 12:28:46 +00:00
|
|
|
- (void)application:(UIApplication *)application didReceiveLocalNotification:(UILocalNotification *)notification {
|
|
|
|
[[RNFirebaseNotifications instance] didReceiveLocalNotification:notification];
|
2017-08-30 09:34:30 +00:00
|
|
|
}
|
|
|
|
|
2018-06-29 12:28:46 +00:00
|
|
|
- (void)application:(UIApplication *)application didReceiveRemoteNotification:(nonnull NSDictionary *)userInfo
|
|
|
|
fetchCompletionHandler:(nonnull void (^)(UIBackgroundFetchResult))completionHandler{
|
|
|
|
[[RNFirebaseNotifications instance] didReceiveRemoteNotification:userInfo fetchCompletionHandler:completionHandler];
|
2017-08-30 09:34:30 +00:00
|
|
|
}
|
|
|
|
|
2018-06-29 12:28:46 +00:00
|
|
|
- (void)application:(UIApplication *)application didRegisterUserNotificationSettings:(UIUserNotificationSettings *)notificationSettings {
|
|
|
|
[[RNFirebaseMessaging instance] didRegisterUserNotificationSettings:notificationSettings];
|
2017-08-30 09:34:30 +00:00
|
|
|
}
|
|
|
|
|
2018-06-28 19:31:31 +00:00
|
|
|
- (BOOL)application:(UIApplication *)application
|
|
|
|
openURL:(NSURL *)url
|
|
|
|
options:(NSDictionary<UIApplicationOpenURLOptionsKey,id> *)options
|
|
|
|
{
|
|
|
|
return [RCTLinkingManager application:application openURL:url options:options];
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
- (BOOL)application:(UIApplication *)application continueUserActivity:(NSUserActivity *)userActivity
|
|
|
|
restorationHandler:(void (^)(NSArray * _Nullable))restorationHandler
|
|
|
|
{
|
|
|
|
return [RCTLinkingManager application:application
|
|
|
|
continueUserActivity:userActivity
|
|
|
|
restorationHandler:restorationHandler];
|
|
|
|
}
|
|
|
|
|
2019-03-04 12:38:41 +00:00
|
|
|
- (NSURL *)sourceURLForBridge:(RCTBridge *)bridge
|
|
|
|
{
|
|
|
|
#if DEBUG
|
|
|
|
return [[RCTBundleURLProvider sharedSettings] jsBundleURLForBundleRoot:@"index" fallbackResource:nil];
|
|
|
|
#else
|
|
|
|
return [[NSBundle mainBundle] URLForResource:@"main" withExtension:@"jsbundle"];
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2016-02-22 22:04:42 +00:00
|
|
|
@end
|