Release 1.1.2
1.1.2 (2023-06-12)
Features
This release adds simple setup methods to take care of the native code setup required as of v1.1.0.
Android
In your MainApplication.java file:
import com.livekit.reactnative.LiveKitReactNative;
public class MainApplication extends Application implements ReactApplication {
@Override
public void onCreate() {
// Place this above any other RN related initialization
LiveKitReactNative.setup();
//...
}
}
iOS
In your AppDelegate.m file:
#import "LivekitReactNative.h"
@implementation AppDelegate
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
// Place this above any other RN related initialization
[LivekitReactNative setup];
//...
}