GetStream / stream-chat-swift

💬 iOS Chat SDK in Swift - Build your own app chat experience for iOS using the official Stream Chat API
https://getstream.io/chat/sdk/ios/
Other
851 stars 204 forks source link

App is crashing when setting user in iOS Swift #1406

Closed Sudhansub closed 3 years ago

Sudhansub commented 3 years ago

What did you do?

What did you expect to happen?

What happened instead?

GetStream Environment

GetStream Chat version: https://getstream.io/tutorials/ios-chat/ GetStream Chat frameworks: StreamChat, StreamChatUI, StreamChatClient, StreamChatCore iOS version: 14.2 Swift version: 5.2 Xcode version:12.4 **Device: Simulator and iPhone(6s, 11)

Additional context

Could not cast value of type 'StreamChat.CurrentUserDTO' (0x7b1800020e30) to 'StreamChat.CurrentUserDTO' (0x10e888590). 2021-08-26 17:20:16.782229+0530 Dijkzigt-app[4359:265213] Could not cast value of type 'StreamChat.CurrentUserDTO' (0x7b1800020e30) to 'StreamChat.CurrentUserDTO' (0x10e888590). Could not cast value of type 'StreamChat.CurrentUserDTO' (0x7b1800020e30) to 'StreamChat.CurrentUserDTO' (0x10e888590).

nuno-vieira commented 3 years ago

@Sudhansub Hi! Thanks for the report. Could you please fill out all the fields on the issue template? As well as providing the full stack trace of the crash.

Thank you!

Sudhansub commented 3 years ago

Hi Nuno-vieira,

i am only trying to check basic chat feature and i follow this tutorial https://getstream.io/tutorials/ios-chat/

but when i am trying to setup user using below code it is crashing.

Note: My app is working fine without getstream chat integrations.

Code:

    let config = ChatClientConfig(apiKey: .init("b67pax5b2wdq"))
        let token =
            Token(
                stringLiteral: "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyX2lkIjoidHV0b3JpYWwtZHJvaWQifQ.NhEr0hP9W9nwqV7ZkdShxvi02C5PR7SJE7Cs4y7kyqg"
            )

        /// create an instance of ChatClient and share it using the singleton
        ChatClient.shared = ChatClient(config: config)

        /// connect to chat
        ChatClient.shared.connectUser(
            userInfo: UserInfo(
                id: "tutorial-droid",
                name: "Tutorial Droid",
                imageURL: URL(string: "https://bit.ly/2TIt8NR")
            ),
            token: token
        )

Here is full crash logs.

Dijkzigt-app(5534,0x11452ee00) malloc: nano zone abandoned due to inability to preallocate reserved vm space. objc[5534]: Class _TtC12StreamChatUI14CellActionView is implemented in both /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Frameworks/StreamChatUI.framework/StreamChatUI (0x1149c1340) and /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Dijkzigt-app (0x10d43b558). One of the two will be used. Which one is undefined. objc[5534]: Class _TtC12StreamChatUI37ChatChannelListCollectionViewDelegate is implemented in both /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Frameworks/StreamChatUI.framework/StreamChatUI (0x1149c1788) and /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Dijkzigt-app (0x10d43b7f0). One of the two will be used. Which one is undefined. objc[5534]: Class _TtC12StreamChatUI31ChatMessageListKeyboardObserver is implemented in both /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Frameworks/StreamChatUI.framework/StreamChatUI (0x1149cc0a8) and /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Dijkzigt-app (0x10d455bc8). One of the two will be used. Which one is undefined. objc[5534]: Class _TtC12StreamChatUI14ChatAvatarView is implemented in both /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Frameworks/StreamChatUI.framework/StreamChatUI (0x1149c1500) and /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Dijkzigt-app (0x10d444990). One of the two will be used. Which one is undefined. objc[5534]: Class _TtC12StreamChatUI5_View is implemented in both /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Frameworks/StreamChatUI.framework/StreamChatUI (0x1149c0b60) and /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Dijkzigt-app (0x10d4451d8). One of the two will be used. Which one is undefined. objc[5534]: Class _TtC12StreamChatUI19_CollectionViewCell is implemented in both /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Frameworks/StreamChatUI.framework/StreamChatUI (0x1149c0c88) and /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Dijkzigt-app (0x10d4452f8). One of the two will be used. Which one is undefined. objc[5534]: Class _TtC12StreamChatUI23_CollectionReusableView is implemented in both /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Frameworks/StreamChatUI.framework/StreamChatUI (0x1149c0db0) and /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Dijkzigt-app (0x10d445418). One of the two will be used. Which one is undefined. objc[5534]: Class _TtC12StreamChatUI8_Control is implemented in both /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Frameworks/StreamChatUI.framework/StreamChatUI (0x1149c0ed8) and /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Dijkzigt-app (0x10d445538). One of the two will be used. Which one is undefined. objc[5534]: Class _TtC12StreamChatUI7_Button is implemented in both /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Frameworks/StreamChatUI.framework/StreamChatUI (0x1149c1000) and /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Dijkzigt-app (0x10d445658). One of the two will be used. Which one is undefined. objc[5534]: Class _TtC12StreamChatUI14_NavigationBar is implemented in both /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Frameworks/StreamChatUI.framework/StreamChatUI (0x1149c1128) and /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Dijkzigt-app (0x10d445778). One of the two will be used. Which one is undefined. objc[5534]: Class _TtC12StreamChatUI15_ViewController is implemented in both /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Frameworks/StreamChatUI.framework/StreamChatUI (0x1149c1250) and /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Dijkzigt-app (0x10d445898). One of the two will be used. Which one is undefined. objc[5534]: Class _TtC12StreamChatUI18ContainerStackView is implemented in both /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Frameworks/StreamChatUI.framework/StreamChatUI (0x1149c8c58) and /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Dijkzigt-app (0x10d4463f0). One of the two will be used. Which one is undefined. objc[5534]: Class _TtC12StreamChatUI24ListCollectionViewLayout is implemented in both /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Frameworks/StreamChatUI.framework/StreamChatUI (0x1149c90c0) and /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Dijkzigt-app (0x10d446d78). One of the two will be used. Which one is undefined. objc[5534]: Class _TtC12StreamChatUI24OnlyLinkTappableTextView is implemented in both /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Frameworks/StreamChatUI.framework/StreamChatUI (0x1149c9d80) and /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Dijkzigt-app (0x10d446e58). One of the two will be used. Which one is undefined. objc[5534]: Class _TtC12StreamChatUIP33_0AEBC9D77554B9FB0D26335580CC96EB11BundleToken is implemented in both /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Frameworks/StreamChatUI.framework/StreamChatUI (0x1149ccb48) and /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Dijkzigt-app (0x10d457da8). One of the two will be used. Which one is undefined. objc[5534]: Class _TtC12StreamChatUIP33_04AC4AB804142D5D2B4F279969BA66E622BundleIdentifyingClass is implemented in both /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Frameworks/StreamChatUI.framework/StreamChatUI (0x1149ca518) and /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Dijkzigt-app (0x10d458420). One of the two will be used. Which one is undefined. objc[5534]: Class _TtC10Starscream13WSCompression is implemented in both /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Frameworks/Starscream.framework/Starscream (0x1134cc2f0) and /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Dijkzigt-app (0x10d458a28). One of the two will be used. Which one is undefined. objc[5534]: Class _TtC10Starscream12Decompressor is implemented in both /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Frameworks/Starscream.framework/Starscream (0x1134cc420) and /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Dijkzigt-app (0x10d458b58). One of the two will be used. Which one is undefined. objc[5534]: Class _TtC10Starscream10Compressor is implemented in both /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Frameworks/Starscream.framework/Starscream (0x1134cc548) and /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Dijkzigt-app (0x10d458c80). One of the two will be used. Which one is undefined. objc[5534]: Class _TtC10Starscream12NativeEngine is implemented in both /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Frameworks/Starscream.framework/Starscream (0x1134cab80) and /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Dijkzigt-app (0x10d44e1e0). One of the two will be used. Which one is undefined. objc[5534]: Class _TtC10Starscream8WSEngine is implemented in both /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Frameworks/Starscream.framework/Starscream (0x1134cc720) and /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Dijkzigt-app (0x10d458f10). One of the two will be used. Which one is undefined. objc[5534]: Class _TtC10Starscream21FoundationHTTPHandler is implemented in both /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Frameworks/Starscream.framework/Starscream (0x1134cb390) and /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Dijkzigt-app (0x10d459198). One of the two will be used. Which one is undefined. objc[5534]: Class _TtC10Starscream27FoundationHTTPServerHandler is implemented in both /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Frameworks/Starscream.framework/Starscream (0x1134cb4b0) and /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Dijkzigt-app (0x10d4592b8). One of the two will be used. Which one is undefined. objc[5534]: Class _TtC10Starscream14FrameCollector is implemented in both /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Frameworks/Starscream.framework/Starscream (0x1134cb808) and /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Dijkzigt-app (0x10d4593c0). One of the two will be used. Which one is undefined. objc[5534]: Class _TtC10Starscream8WSFramer is implemented in both /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Frameworks/Starscream.framework/Starscream (0x1134cb9b8) and /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Dijkzigt-app (0x10d459560). One of the two will be used. Which one is undefined. objc[5534]: Class _TtC10Starscream17StringHTTPHandler is implemented in both /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Frameworks/Starscream.framework/Starscream (0x1134cbbb8) and /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Dijkzigt-app (0x10d4596c8). One of the two will be used. Which one is undefined. objc[5534]: Class _TtC10Starscream18FoundationSecurity is implemented in both /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Frameworks/Starscream.framework/Starscream (0x1134cb5c0) and /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Dijkzigt-app (0x10d4597d8). One of the two will be used. Which one is undefined. objc[5534]: Class _TtC10Starscream15WebSocketServer is implemented in both /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Frameworks/Starscream.framework/Starscream (0x1134cc088) and /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Dijkzigt-app (0x10d4598f8). One of the two will be used. Which one is undefined. objc[5534]: Class _TtC10Starscream16ServerConnection is implemented in both /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Frameworks/Starscream.framework/Starscream (0x1134cc190) and /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Dijkzigt-app (0x10d459a00). One of the two will be used. Which one is undefined. objc[5534]: Class _TtC10Starscream9WebSocket is implemented in both /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Frameworks/Starscream.framework/Starscream (0x1134cbe98) and /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Dijkzigt-app (0x10d459b90). One of the two will be used. Which one is undefined. objc[5534]: Class _TtC10Starscream19FoundationTransport is implemented in both /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Frameworks/Starscream.framework/Starscream (0x1134ca6b8) and /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Dijkzigt-app (0x10d44e950). One of the two will be used. Which one is undefined. objc[5534]: Class _TtC10Starscream12TCPTransport is implemented in both /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Frameworks/Starscream.framework/Starscream (0x1134cbce8) and /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Dijkzigt-app (0x10d459e60). One of the two will be used. Which one is undefined. objc[5534]: Class _TtC10StreamChat9APIClient is implemented in both /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Frameworks/StreamChat.framework/StreamChat (0x113b33538) and /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Dijkzigt-app (0x10d45a0c0). One of the two will be used. Which one is undefined. objc[5534]: Class _TtCC10StreamChat11ClientError12ExpiredToken is implemented in both /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Frameworks/StreamChat.framework/StreamChat (0x113b39130) and /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Dijkzigt-app (0x10d45be28). One of the two will be used. Which one is undefined. objc[5534]: Class _TtCC10StreamChat11ClientError17ResponseBodyEmpty is implemented in both /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Frameworks/StreamChat.framework/StreamChat (0x113b39228) and /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Dijkzigt-app (0x10d45bf20). One of the two will be used. Which one is undefined. objc[5534]: Class _TtCC10StreamChat11ClientError10InvalidURL is implemented in both /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Frameworks/StreamChat.framework/StreamChat (0x113b393d0) and /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Dijkzigt-app (0x10d45c0d0). One of the two will be used. Which one is undefined. objc[5534]: Class _TtCC10StreamChat11ClientError11InvalidJSON is implemented in both /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Frameworks/StreamChat.framework/StreamChat (0x113b394c8) and /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Dijkzigt-app (0x10d45c1c8). One of the two will be used. Which one is undefined. objc[5534]: Class _TtCC10StreamChat11ClientError19MissingConnectionId is implemented in both /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Frameworks/StreamChat.framework/StreamChat (0x113b395c0) and /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Dijkzigt-app (0x10d45c2c0). One of the two will be used. Which one is undefined. objc[5534]: Class _TtCC10StreamChat11ClientError22MissingLocalStorageURL is implemented in both /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Frameworks/StreamChat.framework/StreamChat (0x113b35478) and /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Dijkzigt-app (0x10d45c918). One of the two will be used. Which one is undefined. objc[5534]: Class _TtCC10StreamChat11ClientError23ConnectionNotSuccessful is implemented in both /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Frameworks/StreamChat.framework/StreamChat (0x113b35570) and /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Dijkzigt-app (0x10d45ca10). One of the two will be used. Which one is undefined. objc[5534]: Class _TtCC10StreamChat11ClientError12MissingToken is implemented in both /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Frameworks/StreamChat.framework/StreamChat (0x113b35668) and /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Dijkzigt-app (0x10d45cb08). One of the two will be used. Which one is undefined. objc[5534]: Class _TtCC10StreamChat11ClientError23ClientIsNotInActiveMode is implemented in both /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Frameworks/StreamChat.framework/StreamChat (0x113b35760) and /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Dijkzigt-app (0x10d45cc00). One of the two will be used. Which one is undefined. objc[5534]: Class _TtCC10StreamChat11ClientError12InvalidToken is implemented in both /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Frameworks/StreamChat.framework/StreamChat (0x113b399c0) and /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Dijkzigt-app (0x10d45d078). One of the two will be used. Which one is undefined. objc[5534]: Class _TtCC10StreamChat11ClientError20ChannelNotCreatedYet is implemented in both /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Frameworks/StreamChat.framework/StreamChat (0x113b343f0) and /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Dijkzigt-app (0x10d45d9c8). One of the two will be used. Which one is undefined. objc[5534]: Class _TtCC10StreamChat11ClientError19ChannelEmptyMembers is implemented in both /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Frameworks/StreamChat.framework/StreamChat (0x113b344e8) and /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Dijkzigt-app (0x10d45dac0). One of the two will be used. Which one is undefined. objc[5534]: Class _TtCC10StreamChat11ClientError20ChannelEmptyMessages is implemented in both /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Frameworks/StreamChat.framework/StreamChat (0x113b345e0) and /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Dijkzigt-app (0x10d45dbb8). One of the two will be used. Which one is undefined. objc[5534]: Class _TtCC10StreamChat11ClientError23InvalidCooldownDuration is implemented in both /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Frameworks/StreamChat.framework/StreamChat (0x113b346d8) and /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Dijkzigt-app (0x10d45dcb0). One of the two will be used. Which one is undefined. objc[5534]: Class _TtCC10StreamChat11ClientError11FetchFailed is implemented in both /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Frameworks/StreamChat.framework/StreamChat (0x113b34e50) and /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Dijkzigt-app (0x10d45e370). One of the two will be used. Which one is undefined. objc[5534]: Class _TtC10StreamChatP33_F01EA0B09C91C8073B37BCF095BE38A323ConnectionEventObserver is implemented in both /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Frameworks/StreamChat.framework/StreamChat (0x113b361e8) and /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Dijkzigt-app (0x10d45edc8). One of the two will be used. Which one is undefined. objc[5534]: Class _TtC10StreamChat14DataController is implemented in both /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Frameworks/StreamChat.framework/StreamChat (0x113b36950) and /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Dijkzigt-app (0x10d45f358). One of the two will be used. Which one is undefined. objc[5534]: Class _TtCC10StreamChat11ClientError19MessageEmptyReplies is implemented in both /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Frameworks/StreamChat.framework/StreamChat (0x113b37ba8) and /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Dijkzigt-app (0x10d4608d0). One of the two will be used. Which one is undefined. objc[5534]: Class AttachmentDTO is implemented in both /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Frameworks/StreamChat.framework/StreamChat (0x113b31580) and /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Dijkzigt-app (0x10d44f210). One of the two will be used. Which one is undefined. objc[5534]: Class _TtCC10StreamChat11ClientError22AttachmentDoesNotExist is implemented in both /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Frameworks/StreamChat.framework/StreamChat (0x113b338a8) and /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Dijkzigt-app (0x10d461778). One of the two will be used. Which one is undefined. objc[5534]: Class _TtCC10StreamChat11ClientError17AttachmentEditing is implemented in both /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Frameworks/StreamChat.framework/StreamChat (0x113b339a8) and /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Dijkzigt-app (0x10d461878). One of the two will be used. Which one is undefined. objc[5534]: Class ChannelDTO is implemented in both /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Frameworks/StreamChat.framework/StreamChat (0x113b31770) and /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Dijkzigt-app (0x10d44f2f0). One of the two will be used. Which one is undefined. objc[5534]: Class ChannelListQueryDTO is implemented in both /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Frameworks/StreamChat.framework/StreamChat (0x113b317f0) and /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Dijkzigt-app (0x10d44f370). One of the two will be used. Which one is undefined. objc[5534]: Class ChannelMemberListQueryDTO is implemented in both /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Frameworks/StreamChat.framework/StreamChat (0x113b31870) and /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Dijkzigt-app (0x10d44f3f0). One of the two will be used. Which one is undefined. objc[5534]: Class ChannelMuteDTO is implemented in both /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Frameworks/StreamChat.framework/StreamChat (0x113b31978) and /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Dijkzigt-app (0x10d44f470). One of the two will be used. Which one is undefined. objc[5534]: Class ChannelReadDTO is implemented in both /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Frameworks/StreamChat.framework/StreamChat (0x113b31a10) and /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Dijkzigt-app (0x10d44f508). One of the two will be used. Which one is undefined. objc[5534]: Class CurrentUserDTO is implemented in both /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Frameworks/StreamChat.framework/StreamChat (0x113b31ab8) and /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Dijkzigt-app (0x10d44f590). One of the two will be used. Which one is undefined. objc[5534]: Class DeviceDTO is implemented in both /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Frameworks/StreamChat.framework/StreamChat (0x113b31f50) and /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Dijkzigt-app (0x10d44f610). One of the two will be used. Which one is undefined. objc[5534]: Class MemberDTO is implemented in both /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Frameworks/StreamChat.framework/StreamChat (0x113b32540) and /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Dijkzigt-app (0x10d44f690). One of the two will be used. Which one is undefined. objc[5534]: Class MessageDTO is implemented in both /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Frameworks/StreamChat.framework/StreamChat (0x113b325d8) and /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Dijkzigt-app (0x10d44f728). One of the two will be used. Which one is undefined. objc[5534]: Class _TtCC10StreamChat11ClientError23CurrentUserDoesNotExist is implemented in both /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Frameworks/StreamChat.framework/StreamChat (0x113b37db0) and /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Dijkzigt-app (0x10d4621d8). One of the two will be used. Which one is undefined. objc[5534]: Class _TtCC10StreamChat11ClientError27MessagePayloadSavingFailure is implemented in both /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Frameworks/StreamChat.framework/StreamChat (0x113b37ea8) and /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Dijkzigt-app (0x10d4622d0). One of the two will be used. Which one is undefined. objc[5534]: Class _TtCC10StreamChat11ClientError19ChannelDoesNotExist is implemented in both /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Frameworks/StreamChat.framework/StreamChat (0x113b37fa0) and /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Dijkzigt-app (0x10d4623c8). One of the two will be used. Which one is undefined. objc[5534]: Class MessageReactionDTO is implemented in both /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Frameworks/StreamChat.framework/StreamChat (0x113b32680) and /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Dijkzigt-app (0x10d44f7b0). One of the two will be used. Which one is undefined. objc[5534]: Class TeamDTO is implemented in both /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Frameworks/StreamChat.framework/StreamChat (0x113b327a0) and /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Dijkzigt-app (0x10d44f830). One of the two will be used. Which one is undefined. objc[5534]: Class UserDTO is implemented in both /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Frameworks/StreamChat.framework/StreamChat (0x113b33280) and /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Dijkzigt-app (0x10d44f8c8). One of the two will be used. Which one is undefined. objc[5534]: Class UserListQueryDTO is implemented in both /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Frameworks/StreamChat.framework/StreamChat (0x113b33300) and /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Dijkzigt-app (0x10d44f948). One of the two will be used. Which one is undefined. objc[5534]: Class _TtC10StreamChat17DatabaseContainer is implemented in both /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Frameworks/StreamChat.framework/StreamChat (0x113b31b68) and /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Dijkzigt-app (0x10d44f9f8). One of the two will be used. Which one is undefined. objc[5534]: Class _TtC10StreamChat11ClientError is implemented in both /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Frameworks/StreamChat.framework/StreamChat (0x113b35dc8) and /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Dijkzigt-app (0x10d462838). One of the two will be used. Which one is undefined. objc[5534]: Class _TtCC10StreamChat11ClientError10Unexpected is implemented in both /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Frameworks/StreamChat.framework/StreamChat (0x113b35ec0) and /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Dijkzigt-app (0x10d462930). One of the two will be used. Which one is undefined. objc[5534]: Class _TtCC10StreamChat11ClientError7Unknown is implemented in both /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Frameworks/StreamChat.framework/StreamChat (0x113b35fb8) and /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Dijkzigt-app (0x10d462a28). One of the two will be used. Which one is undefined. objc[5534]: Class _TtCC10StreamChat11ClientError16InvalidChannelId is implemented in both /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Frameworks/StreamChat.framework/StreamChat (0x113b34c80) and /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Dijkzigt-app (0x10d463518). One of the two will be used. Which one is undefined. objc[5534]: Class _TtC10StreamChatP33_51BF784195BE5BB62547887F3BA3EB9F22BundleIdentifyingClass is implemented in both /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Frameworks/StreamChat.framework/StreamChat (0x113b34170) and /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Dijkzigt-app (0x10d464438). One of the two will be used. Which one is undefined. objc[5534]: Class _TtC10StreamChat18InternetConnection is implemented in both /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Frameworks/StreamChat.framework/StreamChat (0x113b371f0) and /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Dijkzigt-app (0x10d4645c8). One of the two will be used. Which one is undefined. objc[5534]: Class _TtCC10StreamChat18InternetConnectionP33_7C7D2AE794E58432FE48498F225973407Monitor is implemented in both /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Frameworks/StreamChat.framework/StreamChat (0x113b372c8) and /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Dijkzigt-app (0x10d4646a0). One of the two will be used. Which one is undefined. objc[5534]: Class _TtCC10StreamChat18InternetConnectionP33_7C7D2AE794E58432FE48498F2259734013LegacyMonitor is implemented in both /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Frameworks/StreamChat.framework/StreamChat (0x113b373c8) and /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Dijkzigt-app (0x10d4647a0). One of the two will be used. Which one is undefined. objc[5534]: Class _TtC10StreamChat12Reachability is implemented in both /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Frameworks/StreamChat.framework/StreamChat (0x113b38d70) and /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Dijkzigt-app (0x10d4648d8). One of the two will be used. Which one is undefined. objc[5534]: Class _TtC10StreamChatP33_CF2CE0A0526ECC196EA354F276C23B6C21ReachabilityWeakifier is implemented in both /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Frameworks/StreamChat.framework/StreamChat (0x113b38ee0) and /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Dijkzigt-app (0x10d464a48). One of the two will be used. Which one is undefined. objc[5534]: Class _TtC10StreamChat18BaseLogDestination is implemented in both /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Frameworks/StreamChat.framework/StreamChat (0x113b33eb8) and /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Dijkzigt-app (0x10d464b80). One of the two will be used. Which one is undefined. objc[5534]: Class _TtC10StreamChat21ConsoleLogDestination is implemented in both /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Frameworks/StreamChat.framework/StreamChat (0x113b362d0) and /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Dijkzigt-app (0x10d464d90). One of the two will be used. Which one is undefined. objc[5534]: Class _TtC10StreamChat18PrefixLogFormatter is implemented in both /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Frameworks/StreamChat.framework/StreamChat (0x113b38c20) and /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Dijkzigt-app (0x10d465048). One of the two will be used. Which one is undefined. objc[5534]: Class _TtC10StreamChat6Logger is implemented in both /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Frameworks/StreamChat.framework/StreamChat (0x113b37608) and /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Dijkzigt-app (0x10d465128). One of the two will be used. Which one is undefined. objc[5534]: Class _TtC10StreamChatP33_213D4BD6F4C1D3612AE7A14AA9C2B71C14RepeatingTimer is implemented in both /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Frameworks/StreamChat.framework/StreamChat (0x113b398c0) and /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Dijkzigt-app (0x10d465298). One of the two will be used. Which one is undefined. objc[5534]: Class _TtC10StreamChat27StarscreamWebSocketProvider is implemented in both /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Frameworks/StreamChat.framework/StreamChat (0x113b39748) and /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Dijkzigt-app (0x10d465538). One of the two will be used. Which one is undefined. objc[5534]: Class _TtC10StreamChat25URLSessionWebSocketEngine is implemented in both /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Frameworks/StreamChat.framework/StreamChat (0x113b32b18) and /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Dijkzigt-app (0x10d450138). One of the two will be used. Which one is undefined. objc[5534]: Class _TtCC10StreamChat11ClientError18MemberDoesNotExist is implemented in both /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Frameworks/StreamChat.framework/StreamChat (0x113b39c60) and /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Dijkzigt-app (0x10d4657f8). One of the two will be used. Which one is undefined. objc[5534]: Class _TtCC10StreamChat11ClientError20UnsupportedEventType is implemented in both /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Frameworks/StreamChat.framework/StreamChat (0x113b36c08) and /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Dijkzigt-app (0x10d465a18). One of the two will be used. Which one is undefined. objc[5534]: Class _TtCC10StreamChat11ClientError13EventDecoding is implemented in both /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Frameworks/StreamChat.framework/StreamChat (0x113b36d00) and /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Dijkzigt-app (0x10d465b10). One of the two will be used. Which one is undefined. objc[5534]: Class _TtC10StreamChat15WebSocketClient is implemented in both /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Frameworks/StreamChat.framework/StreamChat (0x113b3a5f0) and /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Dijkzigt-app (0x10d4666d0). One of the two will be used. Which one is undefined. objc[5534]: Class _TtCC10StreamChat11ClientError9WebSocket is implemented in both /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Frameworks/StreamChat.framework/StreamChat (0x113b3a830) and /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Dijkzigt-app (0x10d466890). One of the two will be used. Which one is undefined. objc[5534]: Class _TtC10StreamChat23WebSocketPingController is implemented in both /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Frameworks/StreamChat.framework/StreamChat (0x113b3a9b8) and /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Dijkzigt-app (0x10d466af8). One of the two will be used. Which one is undefined. objc[5534]: Class _TtC10StreamChat27DefaultReconnectionStrategy is implemented in both /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Frameworks/StreamChat.framework/StreamChat (0x113b3aae8) and /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Dijkzigt-app (0x10d466c28). One of the two will be used. Which one is undefined. objc[5534]: Class _TtC10StreamChat18AttachmentUploader is implemented in both /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Frameworks/StreamChat.framework/StreamChat (0x113b31630) and /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Dijkzigt-app (0x10d450888). One of the two will be used. Which one is undefined. objc[5534]: Class _TtC10StreamChat20ChannelMemberUpdater is implemented in both /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Frameworks/StreamChat.framework/StreamChat (0x113b318d0) and /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Dijkzigt-app (0x10d451050). One of the two will be used. Which one is undefined. objc[5534]: Class _TtC10StreamChat23EventNotificationCenter is implemented in both /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Frameworks/StreamChat.framework/StreamChat (0x113b31fe8) and /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Dijkzigt-app (0x10d4512b8). One of the two will be used. Which one is undefined. objc[5534]: Class _TtC10StreamChat13EventObserver is implemented in both /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Frameworks/StreamChat.framework/StreamChat (0x113b36ea8) and /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Dijkzigt-app (0x10d467640). One of the two will be used. Which one is undefined. objc[5534]: Class _TtC10StreamChat19MemberEventObserver is implemented in both /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Frameworks/StreamChat.framework/StreamChat (0x113b37868) and /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Dijkzigt-app (0x10d4676d8). One of the two will be used. Which one is undefined. objc[5534]: Class _TtCC10StreamChat11ClientError19MessageDoesNotExist is implemented in both /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Frameworks/StreamChat.framework/StreamChat (0x113b38610) and /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Dijkzigt-app (0x10d4677c8). One of the two will be used. Which one is undefined. objc[5534]: Class _TtCC10StreamChat11ClientError14MessageEditing is implemented in both /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Frameworks/StreamChat.framework/StreamChat (0x113b38710) and /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Dijkzigt-app (0x10d4678c8). One of the two will be used. Which one is undefined. objc[5534]: Class _TtCC10StreamChat11ClientError16UserDoesNotExist is implemented in both /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Frameworks/StreamChat.framework/StreamChat (0x113b3a478) and /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Dijkzigt-app (0x10d467a90). One of the two will be used. Which one is undefined. objc[5534]: Class _TtC10StreamChat6Worker is implemented in both /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Frameworks/StreamChat.framework/StreamChat (0x113b333d0) and /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Dijkzigt-app (0x10d4517b0). One of the two will be used. Which one is undefined. objc[5534]: Class _TtC10StreamChat11EventWorker is implemented in both /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Frameworks/StreamChat.framework/StreamChat (0x113b33468) and /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Dijkzigt-app (0x10d451848). One of the two will be used. Which one is undefined. objc[5534]: Class _TtC4Nuke9DataCache is implemented in both /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Frameworks/Nuke.framework/Nuke (0x11319a268) and /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Dijkzigt-app (0x10d467cc8). One of the two will be used. Which one is undefined. objc[5534]: Class _TtC4Nuke10DataLoader is implemented in both /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Frameworks/Nuke.framework/Nuke (0x11319a4f0) and /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Dijkzigt-app (0x10d467f50). One of the two will be used. Which one is undefined. objc[5534]: Class _TtC4NukeP33_27F0B4BA90823100ED6CA18C21E1B9DD11_DataLoader is implemented in both /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Frameworks/Nuke.framework/Nuke (0x1131996f0) and /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Dijkzigt-app (0x10d451950). One of the two will be used. Which one is undefined. objc[5534]: Class _TtCC4NukeP33_27F0B4BA90823100ED6CA18C21E1B9DD11_DataLoader8_Handler is implemented in both /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Frameworks/Nuke.framework/Nuke (0x11319a5d0) and /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Dijkzigt-app (0x10d468028). One of the two will be used. Which one is undefined. objc[5534]: Class _TtC4Nuke10ImageCache is implemented in both /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Frameworks/Nuke.framework/Nuke (0x11319a760) and /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Dijkzigt-app (0x10d468138). One of the two will be used. Which one is undefined. objc[5534]: Class _TtCO4Nuke13ImageDecoders7Default is implemented in both /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Frameworks/Nuke.framework/Nuke (0x11319a870) and /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Dijkzigt-app (0x10d468248). One of the two will be used. Which one is undefined. objc[5534]: Class _TtC4Nuke20ImageDecoderRegistry is implemented in both /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Frameworks/Nuke.framework/Nuke (0x11319a920) and /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Dijkzigt-app (0x10d4682f8). One of the two will be used. Which one is undefined. objc[5534]: Class _TtC4Nuke13ImagePipeline is implemented in both /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Frameworks/Nuke.framework/Nuke (0x11319aaa0) and /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Dijkzigt-app (0x10d468470). One of the two will be used. Which one is undefined. objc[5534]: Class _TtC4Nuke15ImagePrefetcher is implemented in both /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Frameworks/Nuke.framework/Nuke (0x11319acc0) and /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Dijkzigt-app (0x10d468670). One of the two will be used. Which one is undefined. objc[5534]: Class _TtCC4Nuke15ImagePrefetcherP33_E91539C7F2CEABC9BAD6D90C4FE88AEF4Task is implemented in both /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Frameworks/Nuke.framework/Nuke (0x11319ad88) and /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Dijkzigt-app (0x10d468738). One of the two will be used. Which one is undefined. objc[5534]: Class _TtCV4Nuke12ImageRequestP33_5378BDB2EACFF9A02A8774DAA64E9A979Container is implemented in both /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Frameworks/Nuke.framework/Nuke (0x11319b108) and /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Dijkzigt-app (0x10d468b78). One of the two will be used. Which one is undefined. objc[5534]: Class _TtC4Nuke9ImageTask is implemented in both /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Frameworks/Nuke.framework/Nuke (0x11319b358) and /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Dijkzigt-app (0x10d468dc8). One of the two will be used. Which one is undefined. objc[5534]: Class _TtC4Nuke13ImageResponse is implemented in both /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Frameworks/Nuke.framework/Nuke (0x11319b500) and /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Dijkzigt-app (0x10d468f70). One of the two will be used. Which one is undefined. objc[5534]: Class _TtC4NukeP33_9B8BFFAAAF451A66AA04C52C06C0C57619ImageViewController is implemented in both /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Frameworks/Nuke.framework/Nuke (0x11319b5b0) and /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Dijkzigt-app (0x10d469010). One of the two will be used. Which one is undefined. objc[5534]: Class _TtC4Nuke9Operation is implemented in both /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Frameworks/Nuke.framework/Nuke (0x11319a0f0) and /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Dijkzigt-app (0x10d452350). One of the two will be used. Which one is undefined. objc[5534]: Class _TtC4Nuke11RateLimiter is implemented in both /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Frameworks/Nuke.framework/Nuke (0x11319b730) and /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Dijkzigt-app (0x10d4691e8). One of the two will be used. Which one is undefined. objc[5534]: Class _TtC4NukeP33_74C618C6C2E1D47E1C59407252C028E111TokenBucket is implemented in both /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Frameworks/Nuke.framework/Nuke (0x11319b7e0) and /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Dijkzigt-app (0x10d469298). One of the two will be used. Which one is undefined. objc[5534]: Class _TtC4Nuke20ResumableDataStorage is implemented in both /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Frameworks/Nuke.framework/Nuke (0x11319b8d8) and /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Dijkzigt-app (0x10d469390). One of the two will be used. Which one is undefined. objc[5534]: Class _TtC9SwiftyGif16SwiftyGifManager is implemented in both /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Frameworks/SwiftyGif.framework/SwiftyGif (0x1141fb1f8) and /Users/sudhanshubharti/Library/Developer/CoreSimulator/Devices/228D039E-0D6A-4A88-9970-54E864107120/data/Containers/Bundle/Application/32BD1C74-E088-4C9B-9455-CC0A018885FF/Dijkzigt-app.app/Dijkzigt-app (0x10d469f10). One of the two will be used. Which one is undefined. 2021-08-27 11:36:28.990206+0530 Dijkzigt-app[5534:387945] 7.6.0 - [Firebase/Messaging][I-FCM001000] FIRMessaging Remote Notifications proxy enabled, will swizzle remote notification receiver handlers. If you'd prefer to manually integrate Firebase Messaging, add "FirebaseAppDelegateProxyEnabled" to your Info.plist, and set it to NO. Follow the instructions at: https://firebase.google.com/docs/cloud-messaging/ios/client#method_swizzling_in_firebase_messaging to ensure proper integration. 2021-08-27 11:36:28.990361+0530 Dijkzigt-app[5534:387203] [Firebase/Crashlytics] Version 7.6.0 2021-08-27 11:36:29.245757+0530 Dijkzigt-app[5534:387933] [] nw_protocol_get_quic_image_block_invoke dlopen libquic failed Firebase registration token: Optional("dbhDmYennkQFuI4hyqZms2:APA91bE9A86z8K7QhW0h3e2ZruQrOsTJyhYdUY6YfQZajtBx88rVfZi_BgxWZdF7tBfnSYOR1OruGFDj4ccaf5c3IrNp7bGUrGJJygNfJuu6bFNA3aIEe2XlWt9G9DWoIqVw7TCDr7nI") 2021-08-27 11:36:30.193873+0530 Dijkzigt-app[5534:387969] 7.6.0 - [Firebase/Messaging][I-FCM012002] Error in application:didFailToRegisterForRemoteNotificationsWithError: remote notifications are not supported in the simulator Could not cast value of type 'StreamChat.CurrentUserDTO' (0x7b180001a1d0) to 'StreamChat.CurrentUserDTO' (0x10d44f590). 2021-08-27 11:36:30.708616+0530 Dijkzigt-app[5534:387944] Could not cast value of type 'StreamChat.CurrentUserDTO' (0x7b180001a1d0) to 'StreamChat.CurrentUserDTO' (0x10d44f590). Could not cast value of type 'StreamChat.CurrentUserDTO' (0x7b180001a1d0) to 'StreamChat.CurrentUserDTO' (0x10d44f590). CoreSimulator 732.18.6 - Device: iPhone 12 (228D039E-0D6A-4A88-9970-54E864107120) - Runtime: iOS 14.4 (18D46) - DeviceType: iPhone 12 (lldb) po context <NSManagedObjectContext: 0x7b340000e790>

(lldb)

I am using MacOS bigsur 11.2.2. Xcode 12.4 Tried running build on Simulator and iPhone(11,6s)

let me know if you need some more details

evsaev commented 3 years ago

Hello @Sudhansub! 👋 Are you using CocoaPods or SPM to integrate StreamChat/StreamChatUI into your project?

Sudhansub commented 3 years ago

HI Pavel,

I am using SPM.

On Mon, Aug 30, 2021 at 7:14 PM Pavel Evsaev @.***> wrote:

Hello @Sudhansub https://github.com/Sudhansub! 👋 Are you using CocoaPods or SPM to integrate StreamChat/StreamChatUI into your project?

— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub https://github.com/GetStream/stream-chat-swift/issues/1406#issuecomment-908355407, or unsubscribe https://github.com/notifications/unsubscribe-auth/AD4QGHZVUN7T4VQDWDR3NKTT7ODMRANCNFSM5C3FZSUA . Triage notifications on the go with GitHub Mobile for iOS https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675 or Android https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub.

-- Regards,

Mob- 9831348228 Facebook https://www.facebook.com/sudhanshu.bharti.7, Linkdin https://in.linkedin.com/in/sudhanshu-bharti-883003b0 Skype: sudhanshukbharti

tbarbugli commented 3 years ago

@Sudhansub we are not able to reproduce this, can you share more information about how you use the SDK? ie. where is the code you shared running inside your application?

tbarbugli commented 3 years ago

@Sudhansub can you still reproduce this problem? FTR we released a new version of the SDK (4.0 rc1) can you give that version a spin?

Sudhansub commented 2 years ago

Hi Team,

I am facing issue while trying to implement getStream chat in my iOS app. I go through the document but am still facing the issue of implementing it.

Can someone from your technical team help me? Can we do it today as we have to release this app soon?

On Tue, Sep 14, 2021 at 1:43 AM Tommaso Barbugli @.***> wrote:

Closed #1406 https://github.com/GetStream/stream-chat-swift/issues/1406.

— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub https://github.com/GetStream/stream-chat-swift/issues/1406#event-5295278556, or unsubscribe https://github.com/notifications/unsubscribe-auth/AD4QGH6TZRKM3SZAWMXNIWLUBZLNBANCNFSM5C3FZSUA . Triage notifications on the go with GitHub Mobile for iOS https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675 or Android https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub.

-- Regards,

Mob- 9831348228 Facebook https://www.facebook.com/sudhanshu.bharti.7, Linkdin https://in.linkedin.com/in/sudhanshu-bharti-883003b0 Skype: sudhanshukbharti