Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ import io.customer.messaginginapp.MessagingInAppModuleConfig
import io.customer.messaginginapp.ModuleMessagingInApp
import io.customer.messagingpush.MessagingPushModuleConfig
import io.customer.messagingpush.ModuleMessagingPushFCM
import io.customer.reactnative.sdk.messaginginapp.NativeMessagingInAppModuleImpl
import io.customer.reactnative.sdk.messaginginapp.ReactInAppEventListener
import io.customer.sdk.CustomerIOBuilder
import io.customer.sdk.core.util.CioLogLevel
import io.customer.sdk.data.model.Region
Expand All @@ -162,7 +162,7 @@ object CustomerIOSDKInitializer {
addCustomerIOModule(
ModuleMessagingInApp(
MessagingInAppModuleConfig.Builder(siteId, region)
.setEventListener(NativeMessagingInAppModuleImpl.inAppEventListener)
.setEventListener(ReactInAppEventListener.instance)
.build()
)
)
Expand Down Expand Up @@ -205,7 +205,7 @@ import io.customer.messaginginapp.MessagingInAppModuleConfig
import io.customer.messaginginapp.ModuleMessagingInApp
import io.customer.messagingpush.MessagingPushModuleConfig
import io.customer.messagingpush.ModuleMessagingPushFCM
import io.customer.reactnative.sdk.messaginginapp.NativeMessagingInAppModuleImpl
import io.customer.reactnative.sdk.messaginginapp.ReactInAppEventListener
import io.customer.sdk.CustomerIOBuilder
import io.customer.sdk.core.util.CioLogLevel
import io.customer.sdk.data.model.Region
Expand All @@ -230,7 +230,7 @@ object CustomerIOSDKInitializer {
addCustomerIOModule(
ModuleMessagingInApp(
MessagingInAppModuleConfig.Builder(siteId, region)
.setEventListener(NativeMessagingInAppModuleImpl.inAppEventListener)
.setEventListener(ReactInAppEventListener.instance)
.build()
)
)
Expand Down
Loading