package com.infobiprtcreactnative import com.facebook.react.ReactPackage import com.facebook.react.bridge.NativeModule import com.facebook.react.bridge.ReactApplicationContext import com.facebook.react.uimanager.ViewManager import com.infobiprtcreactnative.video.RTCVideoViewManager class InfobipRTCPackage : ReactPackage { override fun createNativeModules(reactContext: ReactApplicationContext): List { return listOf(InfobipRTCModule(reactContext)) } override fun createViewManagers(reactContext: ReactApplicationContext): List> { return listOf(RTCVideoViewManager(reactContext)) } }