mirror of
https://github.com/ecency/ecency-mobile.git
synced 2024-11-22 23:28:56 +03:00
86 lines
2.6 KiB
Plaintext
86 lines
2.6 KiB
Plaintext
#import "AppDelegate.h"
|
|
|
|
#import <AppCenterReactNative.h>
|
|
#import <AppCenterReactNativeAnalytics.h>
|
|
#import <AppCenterReactNativeCrashes.h>
|
|
#import <Bugsnag/Bugsnag.h>
|
|
#import <Firebase.h>
|
|
|
|
#import <React/RCTBundleURLProvider.h>
|
|
|
|
#import <React/RCTLinkingManager.h>
|
|
#import "RNBootSplash.h"
|
|
#import "Orientation.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 continueUserActivity:(nonnull NSUserActivity *)userActivity
|
|
restorationHandler:(nonnull void (^)(NSArray<id<UIUserActivityRestoring>> * _Nullable))restorationHandler
|
|
{
|
|
return [RCTLinkingManager application:application
|
|
continueUserActivity:userActivity
|
|
restorationHandler:restorationHandler];
|
|
}
|
|
|
|
|
|
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
|
|
{
|
|
//third party initiations
|
|
if ([FIRApp defaultApp] == nil) {
|
|
[FIRApp configure];
|
|
}
|
|
[AppCenterReactNative register];
|
|
[AppCenterReactNativeAnalytics registerWithInitiallyEnabled:true];
|
|
[AppCenterReactNativeCrashes registerWithAutomaticProcessing];
|
|
[Bugsnag start];
|
|
|
|
self.moduleName = @"Ecency";
|
|
// You can add your custom initial props in the dictionary below.
|
|
// They will be passed down to the ViewController used by React Native.
|
|
self.initialProps = @{};
|
|
return [super application:application didFinishLaunchingWithOptions:launchOptions];
|
|
}
|
|
|
|
|
|
- (NSURL *)sourceURLForBridge:(RCTBridge *)bridge
|
|
{
|
|
return [self getBundleURL];
|
|
}
|
|
|
|
- (NSURL *)getBundleURL
|
|
{
|
|
#if DEBUG
|
|
return [[RCTBundleURLProvider sharedSettings] jsBundleURLForBundleRoot:@"index"];
|
|
#else
|
|
return [[NSBundle mainBundle] URLForResource:@"main" withExtension:@"jsbundle"];
|
|
#endif
|
|
}
|
|
|
|
|
|
- (UIInterfaceOrientationMask)application:(UIApplication *)application supportedInterfaceOrientationsForWindow:(UIWindow *)window {
|
|
return [Orientation getOrientation];
|
|
}
|
|
|
|
- (UIView *)createRootViewWithBridge:(RCTBridge *)bridge
|
|
moduleName:(NSString *)moduleName
|
|
initProps:(NSDictionary *)initProps {
|
|
UIView *rootView = [super createRootViewWithBridge:bridge
|
|
moduleName:moduleName
|
|
initProps:initProps];
|
|
|
|
[RNBootSplash initWithStoryboard:@"BootSplash" rootView:rootView]; // ⬅️ initialize the splash screen
|
|
|
|
return rootView;
|
|
}
|
|
@end
|