livechat / chat-window-android

LiveChat mobile chat window for Android
https://developers.livechatinc.com/mobile/android/
MIT License
23 stars 28 forks source link

Unable to send the message - error code-> -1 #83

Open MudraPatel opened 7 months ago

MudraPatel commented 7 months ago

Error message -> Uncaught TypeError: e.replaceAll is not a function Error code -> -1

I'm using fullScreenChatWindow here is the configuration setup -

val configuration = ChatWindowConfiguration(
            "******",//"1520",
            "0",
            "Abc-production",
            "*****@email.com",
            hashMapOf()
        )

        configuration.asBundle()
        fullScreenChatWindow = ChatWindowUtils.createAndAttachChatWindowInstance(requireActivity());
        fullScreenChatWindow.setConfiguration(configuration);
        fullScreenChatWindow.setEventsListener(this);
        fullScreenChatWindow.initialize();

        fullScreenChatWindow.showChatWindow();

Please help me for this issue.

Thanks!