75 lines
3.4 KiB
Text
75 lines
3.4 KiB
Text
#import "AppDelegate.h"
|
|
#import <Firebase/Firebase.h>
|
|
// @generated begin react-native-background-fetch-import - expo prebuild (DO NOT MODIFY) sync-fb890e6efd6cc6e67ebbda1087e0a6d7e0bcc527
|
|
#import <TSBackgroundFetch/TSBackgroundFetch.h>
|
|
// @generated end react-native-background-fetch-import
|
|
|
|
#import <React/RCTBundleURLProvider.h>
|
|
#import <React/RCTLinkingManager.h>
|
|
|
|
#import <Firebase.h>
|
|
|
|
@implementation AppDelegate
|
|
|
|
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
|
|
{
|
|
self.moduleName = @"main";
|
|
|
|
// see https://github.com/invertase/react-native-firebase/issues/7788#issuecomment-2211820768
|
|
// and https://rnfirebase.io/#configure-react-native-firebase-modules
|
|
[FIRApp configure];
|
|
|
|
// 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 = @{};
|
|
// @generated begin react-native-background-fetch-didFinishLaunchingWithOptions - expo prebuild (DO NOT MODIFY) sync-2d5ef5f3788ef11f6e72e5480fdbef5f7a21f0f0
|
|
[[TSBackgroundFetch sharedInstance] didFinishLaunching];
|
|
// @generated end react-native-background-fetch-didFinishLaunchingWithOptions
|
|
|
|
return [super application:application didFinishLaunchingWithOptions:launchOptions];
|
|
}
|
|
|
|
- (NSURL *)sourceURLForBridge:(RCTBridge *)bridge
|
|
{
|
|
return [self bundleURL];
|
|
}
|
|
|
|
- (NSURL *)bundleURL
|
|
{
|
|
#if DEBUG
|
|
return [[RCTBundleURLProvider sharedSettings] jsBundleURLForBundleRoot:@".expo/.virtual-metro-entry"];
|
|
#else
|
|
return [[NSBundle mainBundle] URLForResource:@"main" withExtension:@"jsbundle"];
|
|
#endif
|
|
}
|
|
|
|
// Linking API
|
|
- (BOOL)application:(UIApplication *)application openURL:(NSURL *)url options:(NSDictionary<UIApplicationOpenURLOptionsKey,id> *)options {
|
|
return [super application:application openURL:url options:options] || [RCTLinkingManager application:application openURL:url options:options];
|
|
}
|
|
|
|
// Universal Links
|
|
- (BOOL)application:(UIApplication *)application continueUserActivity:(nonnull NSUserActivity *)userActivity restorationHandler:(nonnull void (^)(NSArray<id<UIUserActivityRestoring>> * _Nullable))restorationHandler {
|
|
BOOL result = [RCTLinkingManager application:application continueUserActivity:userActivity restorationHandler:restorationHandler];
|
|
return [super application:application continueUserActivity:userActivity restorationHandler:restorationHandler] || result;
|
|
}
|
|
|
|
// Explicitly define remote notification delegates to ensure compatibility with some third-party libraries
|
|
- (void)application:(UIApplication *)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken
|
|
{
|
|
return [super application:application didRegisterForRemoteNotificationsWithDeviceToken:deviceToken];
|
|
}
|
|
|
|
// Explicitly define remote notification delegates to ensure compatibility with some third-party libraries
|
|
- (void)application:(UIApplication *)application didFailToRegisterForRemoteNotificationsWithError:(NSError *)error
|
|
{
|
|
return [super application:application didFailToRegisterForRemoteNotificationsWithError:error];
|
|
}
|
|
|
|
// Explicitly define remote notification delegates to ensure compatibility with some third-party libraries
|
|
- (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo fetchCompletionHandler:(void (^)(UIBackgroundFetchResult))completionHandler
|
|
{
|
|
return [super application:application didReceiveRemoteNotification:userInfo fetchCompletionHandler:completionHandler];
|
|
}
|
|
|
|
@end
|