Has anyone set up intercom in a react-native app built with expo without having to eject?
In the instillation guide, there is a section that says you must edit your AppDelegate:
@import UIKit;
#import <IntercomModule.h>
@implementation AppDelegate
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
[IntercomModule initialize:@"ios_sdk-500cd3ead0b8b44660787a98816eddbf36a36945" withAppId:@"j1flec5a"];
return YES;
}
If I do not want to eject from the app, can I still use the react-native-expo plugin on IOS?