2017-08-03 18:23:43 +00:00
|
|
|
/**
|
|
|
|
* 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"
|
|
|
|
|
2019-05-22 20:15:35 +00:00
|
|
|
#import <React/RCTBridge.h>
|
2017-08-03 18:23:43 +00:00
|
|
|
#import <React/RCTBundleURLProvider.h>
|
|
|
|
#import <React/RCTRootView.h>
|
2018-05-07 20:43:26 +00:00
|
|
|
#import <React/RCTLinkingManager.h>
|
2018-07-10 13:40:32 +00:00
|
|
|
#import "RNNotifications.h"
|
2019-12-17 14:08:06 +00:00
|
|
|
#import "RNBootSplash.h"
|
2019-03-12 16:23:06 +00:00
|
|
|
#import "Orientation.h"
|
2019-05-28 13:03:08 +00:00
|
|
|
#import <Firebase.h>
|
2019-06-21 16:39:20 +00:00
|
|
|
#import <UMCore/UMModuleRegistry.h>
|
|
|
|
#import <UMReactNativeAdapter/UMNativeModulesProxy.h>
|
|
|
|
#import <UMReactNativeAdapter/UMModuleRegistryAdapter.h>
|
2020-08-19 17:14:22 +00:00
|
|
|
#import <MMKV/MMKV.h>
|
2017-08-03 18:23:43 +00:00
|
|
|
|
2020-05-08 16:37:49 +00:00
|
|
|
#if DEBUG
|
|
|
|
#import <FlipperKit/FlipperClient.h>
|
|
|
|
#import <FlipperKitLayoutPlugin/FlipperKitLayoutPlugin.h>
|
|
|
|
#import <FlipperKitUserDefaultsPlugin/FKUserDefaultsPlugin.h>
|
|
|
|
#import <FlipperKitNetworkPlugin/FlipperKitNetworkPlugin.h>
|
|
|
|
#import <SKIOSNetworkPlugin/SKIOSNetworkAdapter.h>
|
|
|
|
#import <FlipperKitReactPlugin/FlipperKitReactPlugin.h>
|
|
|
|
static void InitializeFlipper(UIApplication *application) {
|
2021-07-21 15:50:39 +00:00
|
|
|
FlipperClient *client = [FlipperClient sharedClient];
|
|
|
|
SKDescriptorMapper *layoutDescriptorMapper = [[SKDescriptorMapper alloc] initWithDefaults];
|
|
|
|
[client addPlugin:[[FlipperKitLayoutPlugin alloc] initWithRootNode:application withDescriptorMapper:layoutDescriptorMapper]];
|
|
|
|
[client addPlugin:[[FKUserDefaultsPlugin alloc] initWithSuiteName:nil]];
|
|
|
|
[client addPlugin:[FlipperKitReactPlugin new]];
|
|
|
|
[client addPlugin:[[FlipperKitNetworkPlugin alloc] initWithNetworkAdapter:[SKIOSNetworkAdapter new]]];
|
|
|
|
[client start];
|
2020-05-08 16:37:49 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2017-08-03 18:23:43 +00:00
|
|
|
@implementation AppDelegate
|
|
|
|
|
|
|
|
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
|
|
|
|
{
|
2021-07-21 15:50:39 +00:00
|
|
|
#if DEBUG
|
|
|
|
InitializeFlipper(application);
|
|
|
|
#endif
|
2019-05-22 20:15:35 +00:00
|
|
|
|
2019-06-21 16:39:20 +00:00
|
|
|
self.moduleRegistryAdapter = [[UMModuleRegistryAdapter alloc] initWithModuleRegistryProvider:[[UMModuleRegistryProvider alloc] init]];
|
2019-05-22 20:15:35 +00:00
|
|
|
RCTBridge *bridge = [[RCTBridge alloc] initWithDelegate:self launchOptions:launchOptions];
|
2020-07-24 13:19:17 +00:00
|
|
|
if(![FIRApp defaultApp]){
|
|
|
|
[FIRApp configure];
|
|
|
|
}
|
2019-05-28 13:03:08 +00:00
|
|
|
RCTRootView *rootView = [[RCTRootView alloc] initWithBridge:bridge
|
|
|
|
moduleName:@"RocketChatRN"
|
2019-05-22 20:15:35 +00:00
|
|
|
initialProperties:nil];
|
|
|
|
|
2019-03-12 16:23:06 +00:00
|
|
|
self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds];
|
|
|
|
UIViewController *rootViewController = [UIViewController new];
|
|
|
|
rootViewController.view = rootView;
|
2019-09-25 22:13:39 +00:00
|
|
|
self.window.rootViewController = rootViewController;
|
2019-03-12 16:23:06 +00:00
|
|
|
[self.window makeKeyAndVisible];
|
2019-08-07 13:51:34 +00:00
|
|
|
[RNNotifications startMonitorNotifications];
|
2020-09-24 18:34:13 +00:00
|
|
|
[ReplyNotification configure];
|
2020-08-19 17:14:22 +00:00
|
|
|
|
|
|
|
// AppGroup MMKV
|
|
|
|
NSString *groupDir = [[NSFileManager defaultManager] containerURLForSecurityApplicationGroupIdentifier:[[NSBundle mainBundle] objectForInfoDictionaryKey:@"AppGroup"]].path;
|
|
|
|
[MMKV initializeMMKV:nil groupDir:groupDir logLevel:MMKVLogNone];
|
2021-07-20 13:23:29 +00:00
|
|
|
|
|
|
|
[RNBootSplash initWithStoryboard:@"LaunchScreen" rootView:rootView];
|
2019-05-22 20:15:35 +00:00
|
|
|
|
2019-03-12 16:23:06 +00:00
|
|
|
return YES;
|
2017-08-03 18:23:43 +00:00
|
|
|
}
|
|
|
|
|
2019-06-21 16:39:20 +00:00
|
|
|
- (NSArray<id<RCTBridgeModule>> *)extraModulesForBridge:(RCTBridge *)bridge
|
|
|
|
{
|
|
|
|
NSArray<id<RCTBridgeModule>> *extraModules = [_moduleRegistryAdapter extraModulesForBridge:bridge];
|
|
|
|
// You can inject any extra modules that you would like here, more information at:
|
|
|
|
// https://facebook.github.io/react-native/docs/native-modules-ios.html#dependency-injection
|
|
|
|
return extraModules;
|
|
|
|
}
|
|
|
|
|
2019-05-22 20:15:35 +00:00
|
|
|
- (NSURL *)sourceURLForBridge:(RCTBridge *)bridge
|
|
|
|
{
|
|
|
|
#if DEBUG
|
|
|
|
return [[RCTBundleURLProvider sharedSettings] jsBundleURLForBundleRoot:@"index" fallbackResource:nil];
|
|
|
|
#else
|
|
|
|
return [[NSBundle mainBundle] URLForResource:@"main" withExtension:@"jsbundle"];
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2018-07-10 13:40:32 +00:00
|
|
|
- (void)application:(UIApplication *)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken
|
|
|
|
{
|
|
|
|
[RNNotifications didRegisterForRemoteNotificationsWithDeviceToken:deviceToken];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)application:(UIApplication *)application didFailToRegisterForRemoteNotificationsWithError:(NSError *)error {
|
|
|
|
[RNNotifications didFailToRegisterForRemoteNotificationsWithError:error];
|
|
|
|
}
|
|
|
|
|
2018-05-07 20:43:26 +00:00
|
|
|
- (BOOL)application:(UIApplication *)application openURL:(NSURL *)url
|
|
|
|
sourceApplication:(NSString *)sourceApplication annotation:(id)annotation
|
|
|
|
{
|
|
|
|
return [RCTLinkingManager application:application openURL:url
|
|
|
|
sourceApplication:sourceApplication annotation:annotation];
|
|
|
|
}
|
|
|
|
|
2019-03-12 16:23:06 +00:00
|
|
|
- (UIInterfaceOrientationMask)application:(UIApplication *)application supportedInterfaceOrientationsForWindow:(UIWindow *)window
|
|
|
|
{
|
|
|
|
return [Orientation getOrientation];
|
|
|
|
}
|
|
|
|
|
2018-05-07 20:43:26 +00:00
|
|
|
// 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];
|
|
|
|
}
|
2017-08-03 18:23:43 +00:00
|
|
|
@end
|