mirror of
				https://github.com/tooot-app/app
				synced 2025-06-05 22:19:13 +02:00 
			
		
		
		
	Merge branch 'main' into release
This commit is contained in:
		| @@ -1,9 +1,7 @@ | ||||
| #import <Foundation/Foundation.h> | ||||
| #import <RCTAppDelegate.h> | ||||
| #import <UIKit/UIKit.h> | ||||
|  | ||||
| #import <Expo/Expo.h> | ||||
|  | ||||
| @interface AppDelegate : RCTAppDelegate | ||||
| @interface AppDelegate : EXAppDelegateWrapper | ||||
|  | ||||
| @end | ||||
|   | ||||
| @@ -51,4 +51,22 @@ | ||||
|                     restorationHandler:restorationHandler]; | ||||
| } | ||||
|  | ||||
| // 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 | ||||
		Reference in New Issue
	
	Block a user