Fix missing config for background fetch

This commit is contained in:
Paul Frazee 2023-01-24 19:59:40 -06:00
parent 869f6c4e0e
commit 079e1dbe18
2 changed files with 13 additions and 0 deletions

View file

@ -8,12 +8,17 @@
// splash screen
#import "RNSplashScreen.h"
#import <TSBackgroundFetch/TSBackgroundFetch.h>
@implementation AppDelegate
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
// Show the splash screen
// [RNSplashScreen show];
// Register BackgroundFetch
[[TSBackgroundFetch sharedInstance] didFinishLaunching];
self.moduleName = @"xyz.blueskyweb.app";
return [super application:application didFinishLaunchingWithOptions:launchOptions];