customerio / customerio-reactnative

MIT License
23 stars 11 forks source link

Docs unclear on setup for RN 0.72.6 #211

Closed billyjacoby closed 10 months ago

billyjacoby commented 10 months ago

SDK version: 3.1.13

Are logs available? N/A Describe the issue The docs describe setting up in an older version of React native, specifically the `AppDelegate.h' file. The docs currently show:

 #import <UserNotifications/UserNotifications.h>
 @interface AppDelegate: UIResponder <UIApplicationDelegate, RCTBridgeDelegate,UNUserNotificationCenterDelegate>

 @end

However with a more recent version of React Native this should actually be:

#import <RCTAppDelegate.h>
#import <UserNotifications/UserNotifications.h>

@interface AppDelegate : RCTAppDelegate<UNUserNotificationCenterDelegate>

@end

Screenshots

Additional context

levibostian commented 10 months ago

Thank you for sending this suggestion to us. We appreciate it!

We will have an update to our docs published shortly.