mirror of
https://github.com/ecency/ecency-mobile.git
synced 2024-11-24 08:55:14 +03:00
62 lines
2.1 KiB
Objective-C
62 lines
2.1 KiB
Objective-C
/**
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
#import "RNSplashScreen.h"
|
|
#import "AppDelegate.h"
|
|
#import <AppCenterReactNativeShared/AppCenterReactNativeShared.h>
|
|
#import <AppCenterReactNative.h>
|
|
#import <AppCenterReactNativeAnalytics.h>
|
|
#import <AppCenterReactNativeCrashes.h>
|
|
#import <BugsnagReactNative/BugsnagReactNative.h>
|
|
#import <Firebase.h>
|
|
|
|
#import <React/RCTBridge.h>
|
|
#import <React/RCTBundleURLProvider.h>
|
|
#import <React/RCTRootView.h>
|
|
#import <React/RCTLinkingManager.h>
|
|
|
|
@implementation AppDelegate
|
|
|
|
- (BOOL)application:(UIApplication *)application
|
|
openURL:(NSURL *)url
|
|
options:(NSDictionary<UIApplicationOpenURLOptionsKey,id> *)options
|
|
{
|
|
return [RCTLinkingManager application:application openURL:url options:options];
|
|
}
|
|
|
|
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
|
|
{
|
|
if ([FIRApp defaultApp] == nil) {
|
|
[FIRApp configure];
|
|
}
|
|
[AppCenterReactNative register];
|
|
[AppCenterReactNativeAnalytics registerWithInitiallyEnabled:true];
|
|
[AppCenterReactNativeCrashes registerWithAutomaticProcessing];
|
|
[BugsnagReactNative start];
|
|
RCTBridge *bridge = [[RCTBridge alloc] initWithDelegate:self launchOptions:launchOptions];
|
|
RCTRootView *rootView = [[RCTRootView alloc] initWithBridge:bridge
|
|
moduleName:@"Ecency"
|
|
initialProperties:nil];
|
|
|
|
rootView.backgroundColor = [[UIColor alloc] initWithRed:1.0f green:1.0f blue:1.0f alpha:1];
|
|
|
|
self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds];
|
|
UIViewController *rootViewController = [UIViewController new];
|
|
rootViewController.view = rootView;
|
|
self.window.rootViewController = rootViewController;
|
|
[self.window makeKeyAndVisible];
|
|
[RNSplashScreen show];
|
|
return YES;
|
|
}
|
|
|
|
- (NSURL *)sourceURLForBridge:(RCTBridge *)bridge
|
|
{
|
|
return [[RCTBundleURLProvider sharedSettings] jsBundleURLForBundleRoot:@"index" fallbackResource:nil];
|
|
}
|
|
|
|
@end
|