├── .DS_Store ├── .gitattributes ├── .gitignore ├── CometChatUIKitSwift.xcodeproj ├── project.pbxproj └── xcshareddata │ └── xcschemes │ ├── CometChatUIKitSwift.xcscheme │ └── SampleAppPushNotificationAPNs.xcscheme ├── CometChatUIKitSwift ├── .DS_Store ├── AppDelegate.swift ├── CometChatUIKitSwift.docc │ └── CometChatUIKitSwift.md ├── CometChatUIKitSwift.h ├── CometChatUIKitSwift.m ├── Components │ ├── .DS_Store │ ├── AI │ │ ├── AI Bot │ │ │ ├── AI Message Compoer │ │ │ │ ├── AIMessageComposer.swift │ │ │ │ └── AIMessageComposer.xib │ │ │ ├── AIAssistBotConfiguration.swift │ │ │ ├── AIAssistBotDecorator.swift │ │ │ ├── AIAssistBotExtension.swift │ │ │ ├── AIAssistBotStyle.swift │ │ │ └── AIAssistViewController.swift │ │ ├── AI Conversation Starter │ │ │ ├── AIConversationStarterCell.swift │ │ │ ├── AIConversationStarterConfiguration.swift │ │ │ ├── AIConversationStarterDecorator.swift │ │ │ ├── AIConversationStarterExtension.swift │ │ │ ├── AIConversationStarterStyle.swift │ │ │ ├── CometChatAIConversationStarter.swift │ │ │ └── CometChatAIConversationStarterShimmer.swift │ │ ├── AI Shared Views │ │ │ ├── AI Replies View │ │ │ │ ├── AIRepliesCell.swift │ │ │ │ └── CometChatAISmartReply.swift │ │ │ ├── AI State View │ │ │ │ └── AIStateManagementView.swift │ │ │ ├── AIOptionsStyle.swift │ │ │ ├── AIParentConfiguration.swift │ │ │ └── AIParentStyle.swift │ │ ├── AI Smart Replies │ │ │ ├── AISmartRepliesConfiguration.swift │ │ │ ├── AISmartRepliesDecorator.swift │ │ │ ├── AISmartRepliesExtension.swift │ │ │ ├── AISmartRepliesStyle.swift │ │ │ ├── CometChatAIConversationSummaryShimmer.swift │ │ │ └── CometChatAISmartRepliesShimmer.swift │ │ └── AI Summarizer │ │ │ ├── AIConversationSummaryConfiguration.swift │ │ │ ├── AIConversationSummaryDecorator.swift │ │ │ ├── AIConversationSummaryExtension.swift │ │ │ ├── AIConversationSummaryStyle.swift │ │ │ ├── CometChatAIConversationSummary.swift │ │ │ └── CometChatAIConversationSummaryShimmer.swift │ ├── Calls │ │ ├── Call Bubble │ │ │ ├── CallActionBubbleStyle.swift │ │ │ ├── CallBubbleConfiguration.swift │ │ │ ├── CallBubbleStyle.swift │ │ │ └── CometChatCallBubble.swift │ │ ├── Call Button │ │ │ ├── CallButtonConfiguration.swift │ │ │ ├── CallButtonStyle.swift │ │ │ ├── CometChatCallButton + Properties.swift │ │ │ └── CometChatCallButton.swift │ │ ├── Call Extension │ │ │ ├── CallingConfiguration.swift │ │ │ ├── CallingDefaultBuilder.swift │ │ │ ├── CallingExtension.swift │ │ │ └── CallingExtensionDecorator.swift │ │ ├── Call Log │ │ │ └── Call Logs │ │ │ │ ├── CallLogStyle.swift │ │ │ │ ├── CallLogsViewModel.swift │ │ │ │ ├── CometChatCallLogShimmer.swift │ │ │ │ ├── CometChatCallLogs + Properties.swift │ │ │ │ └── CometChatCallLogs.swift │ │ ├── Incoming Call │ │ │ ├── CometChatIncomingCall + Properties.swift │ │ │ ├── CometChatIncomingCall.swift │ │ │ ├── IncomingCallConfiguration.swift │ │ │ ├── IncomingCallStyle.swift │ │ │ └── IncomingCallViewModel.swift │ │ ├── OngoingCall │ │ │ ├── CometChatOngoingCall.swift │ │ │ └── OngoingCallViewModel.swift │ │ ├── Outgoing Call │ │ │ ├── CometChatOutgoingCall + Properties.swift │ │ │ ├── CometChatOutgoingCall.swift │ │ │ ├── OutgoingCallConfiguration.swift │ │ │ ├── OutgoingCallStyle.swift │ │ │ └── OutgoingCallViewModel.swift │ │ └── Resources │ │ │ ├── CometChatCallBubble.xib │ │ │ └── calls-assets.xcassets │ │ │ ├── Contents.json │ │ │ ├── VideoCall.imageset │ │ │ ├── Contents.json │ │ │ ├── Icon.png │ │ │ ├── Icon@2x.png │ │ │ └── Icon@3x.png │ │ │ ├── VoiceCall.imageset │ │ │ ├── Contents.json │ │ │ ├── Voice Call.png │ │ │ └── Voice Call@2x.png │ │ │ ├── call-new.imageset │ │ │ ├── Call New.png │ │ │ ├── Call New@2x.png │ │ │ └── Contents.json │ │ │ ├── calls-info.imageset │ │ │ ├── Contents.json │ │ │ ├── messages-info.png │ │ │ ├── messages-info@2x.png │ │ │ └── messages-info@3x.png │ │ │ ├── calls.imageset │ │ │ ├── Calls.png │ │ │ ├── Calls@2x.png │ │ │ └── Contents.json │ │ │ ├── incoming-audio-call.imageset │ │ │ ├── Contents.json │ │ │ ├── Yes.png │ │ │ ├── Yes@2x.png │ │ │ └── Yes@3x.png │ │ │ ├── incoming-video-call.imageset │ │ │ ├── Contents.json │ │ │ ├── Yes.png │ │ │ ├── Yes@2x.png │ │ │ └── Yes@3x.png │ │ │ ├── mic-off.imageset │ │ │ ├── Contents.json │ │ │ ├── Mic Off.png │ │ │ └── Mic Off@2x.png │ │ │ ├── mic.imageset │ │ │ ├── Contents.json │ │ │ ├── Mic.png │ │ │ └── Mic@2x.png │ │ │ ├── missed-audio-call.imageset │ │ │ ├── Contents.json │ │ │ ├── Icon-40.png │ │ │ ├── Icon-40@2x.png │ │ │ └── Icon-40@3x.png │ │ │ ├── missed-video-call.imageset │ │ │ ├── Contents.json │ │ │ ├── Icon-40.png │ │ │ ├── Icon-60@2x.png │ │ │ └── Icon-60@3x.png │ │ │ ├── outgoing-audio-call.imageset │ │ │ ├── Contents.json │ │ │ ├── Yes.png │ │ │ ├── Yes@2x.png │ │ │ └── Yes@3x.png │ │ │ ├── outgoing-video-call.imageset │ │ │ ├── Contents.json │ │ │ ├── Yes.png │ │ │ ├── Yes@2x.png │ │ │ └── Yes@3x.png │ │ │ ├── video-call.imageset │ │ │ ├── Contents.json │ │ │ ├── Icon 3.png │ │ │ ├── Icon 3@2x.png │ │ │ └── Icon 3@3x.png │ │ │ └── voice-call.imageset │ │ │ ├── Contents.json │ │ │ ├── Icon 2.png │ │ │ ├── Icon 2@2x.png │ │ │ └── Icon 2@3x.png │ ├── Conversations │ │ ├── CometChatConversationSimmer.swift │ │ ├── CometChatConversations + Properties.swift │ │ ├── CometChatConversations.swift │ │ ├── CometChatViewModel + CallEvent.swift │ │ ├── ConversationConstants.swift │ │ ├── ConversationViewModel + ConversationEventListener.swift │ │ ├── ConversationViewModel + GroupEventListener.swift │ │ ├── ConversationViewModel + MessageEventListener.swift │ │ ├── ConversationViewModel + UserEventListener.swift │ │ ├── ConversationsBuilder.swift │ │ ├── ConversationsStyle.swift │ │ └── ConversationsViewModel.swift │ ├── Extensions │ │ ├── Collaborative Document │ │ │ ├── CollaborativeDocumentExtension.swift │ │ │ ├── CollaborativeDocumentViewModel.swift │ │ │ └── CometChatDocument │ │ │ │ └── CollaborativeDocumentBubbleConfiguration.swift │ │ ├── Collaborative Whiteboard │ │ │ ├── CollaborativeWhiteboardExtension.swift │ │ │ ├── CollaborativeWhiteboardViewModel.swift │ │ │ └── CometChatWhiteboard │ │ │ │ ├── CollaborativeBubbleStyle.swift │ │ │ │ ├── CollaborativeWhiteboardBubbleConfiguration.swift │ │ │ │ └── CometChatCollaborativeBubble.swift │ │ ├── Date Time Formatter │ │ │ ├── CometChatDateTimeFormatter.swift │ │ │ └── DateTimeFormatterUtils.swift │ │ ├── Link Preview │ │ │ ├── LinkPreviewExtension.swift │ │ │ ├── LinkPreviewMessage │ │ │ │ ├── CometChatLinkPreviewBubble.swift │ │ │ │ └── LinkPreviewBubbleStyle.swift │ │ │ └── LinkPreviewViewModel.swift │ │ ├── Message Translation │ │ │ ├── CometChatMessageTranslationBubble.swift │ │ │ ├── CometChatMessageTranslationStyle.swift │ │ │ ├── MessageTranslationExtension.swift │ │ │ └── MessageTranslationViewModel.swift │ │ ├── Polls │ │ │ ├── CometChatCreatePoll.swift │ │ │ ├── CometChatCreatePollHeader.swift │ │ │ ├── CometChatPollsExtension.swift │ │ │ ├── CometChatPollsViewModel.swift │ │ │ ├── Create Poll Options │ │ │ │ └── CometChatCreatePollOptions.swift │ │ │ ├── Create Poll Questions │ │ │ │ └── CometChatCreatePollQuestions.swift │ │ │ ├── CreatePollConfiguration.swift │ │ │ ├── CreatePollStyle.swift │ │ │ └── Poll Bubble │ │ │ │ ├── CometChatPollsBubble.swift │ │ │ │ ├── PollBubbleConfiguration.swift │ │ │ │ ├── PollBubbleStyle.swift │ │ │ │ ├── PollsOptionView.swift │ │ │ │ └── PollsUtils.swift │ │ ├── Profanity Data Masking │ │ │ ├── ProfanityDataMaskingExtension.swift │ │ │ └── ProfanityDataMaskingExtensionDecorator.swift │ │ ├── Smart Replies │ │ │ ├── CometChatSmartReplies.swift │ │ │ ├── CometChatSmartRepliesItem.swift │ │ │ ├── CometChatSmartReplyExtension.swift │ │ │ ├── SmartRepliesConfiguration.swift │ │ │ ├── SmartRepliesStyle.swift │ │ │ └── SmartReplyExtensionDecorator.swift │ │ ├── Sticker │ │ │ ├── CometChatSticker.swift │ │ │ ├── CometChatStickerBubble.swift │ │ │ ├── CometChatStickerKeyboard.swift │ │ │ ├── CometChatStickerKeyboardItem.swift │ │ │ ├── CometChatStickerSet.swift │ │ │ ├── CometChatStickerShimmer.swift │ │ │ ├── StickerAuxiliaryButton.swift │ │ │ ├── StickerBubbleConfiguration.swift │ │ │ ├── StickerBubbleStyle.swift │ │ │ ├── StickerConfiguration.swift │ │ │ ├── StickerExtension.swift │ │ │ ├── StickerKeyboardConfiguration.swift │ │ │ ├── StickerKeyboardStyle.swift │ │ │ └── StickersExtensionDecorator.swift │ │ └── Thumbnail Generation │ │ │ ├── ThumbnailGenerationExtension.swift │ │ │ └── ThumbnailGenerationViewModel.swift │ ├── Group Members │ │ ├── Change Scope │ │ │ ├── CometChatScopeChange.swift │ │ │ └── ScopeChangeStyle.swift │ │ ├── CometChatGroupMembers + Properties.swift │ │ ├── CometChatGroupMembers.swift │ │ ├── GroupMembersBuilder.swift │ │ ├── GroupMembersStyle.swift │ │ ├── GroupMembersViewModel + GroupsEventListener.swift │ │ └── GroupMembersViewModel.swift │ ├── Groups │ │ ├── CometChatGroups + Properties.swift │ │ ├── CometChatGroups.swift │ │ ├── GroupsBuilder.swift │ │ ├── GroupsShimmerView.swift │ │ ├── GroupsStyle.swift │ │ ├── GroupsViewModel + GroupsEventListener.swift │ │ └── GroupsViewModel.swift │ ├── Message Composer │ │ ├── CometChatMessageComposer + ActionSheetDelegate.swift │ │ ├── CometChatMessageComposer + Properties.swift │ │ ├── CometChatMessageComposer.swift │ │ ├── GrowingTextView │ │ │ └── GrowingTextView.swift │ │ ├── MessageComposer + TextFormatter.swift │ │ ├── MessageComposerBuilder.swift │ │ ├── MessageComposerStyle.swift │ │ ├── MessageComposerViewModel+UsersEventListener.swift │ │ ├── MessageComposerViewModel.swift │ │ ├── MessgaePreviewView.swift │ │ └── TextFormatter │ │ │ ├── CometChatMentionsFormatter.swift │ │ │ ├── CometChatTextFormatter.swift │ │ │ ├── MentionTextStyle.swift │ │ │ ├── SuggestionItem.swift │ │ │ └── View │ │ │ ├── CometChatSuggestionView.swift │ │ │ ├── LimitedFormatterView.swift │ │ │ └── SuggestionViewStyle.swift │ ├── Message Header │ │ ├── CometChatMessageHeader + Properties.swift │ │ ├── CometChatMessageHeader.swift │ │ ├── MessageHeaderConstants.swift │ │ ├── MessageHeaderStyle.swift │ │ ├── MessageHeaderViewModel + GroupsEventListener.swift │ │ ├── MessageHeaderViewModel + MessageEventListener.swift │ │ ├── MessageHeaderViewModel + UsersEventListener.swift │ │ └── MessageHeaderViewModel.swift │ ├── Message Information │ │ ├── CometChatMessageInformation.swift │ │ ├── MessageInformationConfiguration.swift │ │ ├── MessageInformationStyle.swift │ │ └── MessageInformationViewModel.swift │ ├── Message List │ │ ├── CometChatMessageList + AI.swift │ │ ├── CometChatMessageList + Properties.swift │ │ ├── CometChatMessageList.swift │ │ ├── Custom ContextMenu │ │ │ ├── MessageList + ContextMenu.swift │ │ │ ├── MessagePopupAnimator.swift │ │ │ └── MessagePopupViewController.swift │ │ ├── MessageList + Reactions.swift │ │ ├── MessageListShimmerView.swift │ │ ├── MessageListStyle.swift │ │ ├── MessageListViewModel.swift │ │ ├── MessagesListBuilder.swift │ │ └── ReactionsHelper │ │ │ ├── QuickReactions │ │ │ ├── CometChatQuickReactions.swift │ │ │ ├── QuickReactionsConfiguration.swift │ │ │ └── QuickReactionsStyle.swift │ │ │ ├── ReactionList │ │ │ ├── CometChatReactionList.swift │ │ │ ├── ReactionListCollectionCell.swift │ │ │ ├── ReactionListConfiguration.swift │ │ │ ├── ReactionListDataModel.swift │ │ │ └── ReactionListStyle.swift │ │ │ └── Reactions │ │ │ ├── CometChatReactions.swift │ │ │ ├── ReactionsButton.swift │ │ │ ├── ReactionsConfiguration.swift │ │ │ └── ReactionsStyle.swift │ ├── Resources │ │ ├── CometChatBannedMemberList.xib │ │ ├── CometChatCallActionBubble.xib │ │ ├── CometChatCardBubble.xib │ │ ├── CometChatEmojiHeader.xib │ │ ├── CometChatEmojiKeyboardItem.xib │ │ ├── CometChatFormBubble.xib │ │ ├── CometChatGroupsWithMessages.xib │ │ ├── CometChatLocationBubble.xib │ │ ├── CometChatMeetingBubble.xib │ │ ├── CometChatMessageBubble.xib │ │ ├── CometChatMessageInput.xib │ │ ├── CometChatNewMessageIndicator.xib │ │ ├── CometChatQuickView.xib │ │ ├── CometChatTextAutoSizeBubble.xib │ │ ├── CometChatVideoBubble.xib │ │ ├── CometChatViewMembers.xib │ │ ├── GridView.xib │ │ ├── ListModeCell.xib │ │ ├── audio-waveform.gif │ │ ├── chats-assets.xcassets │ │ │ ├── Chats.imageset │ │ │ │ ├── Chats.png │ │ │ │ ├── Chats@2x.png │ │ │ │ ├── Chats@3x.png │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── chats-create.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── chats-create.png │ │ │ │ ├── chats-create@2x.png │ │ │ │ └── chats-create@3x.png │ │ │ ├── chats-delete.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── chats-delete.png │ │ │ │ ├── chats-delete@2x.png │ │ │ │ └── chats-delete@3x.png │ │ │ ├── chats-lock.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── chats-lock.png │ │ │ │ ├── chats-lock@2x.png │ │ │ │ └── chats-lock@3x.png │ │ │ ├── chats-message-delivered.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── chats-message-delivered.png │ │ │ │ ├── chats-message-delivered@2x.png │ │ │ │ └── chats-message-delivered@3x.png │ │ │ ├── chats-message-read.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── chats-message-read.png │ │ │ │ ├── chats-message-read@2x.png │ │ │ │ └── chats-message-read@3x.png │ │ │ ├── chats-message-sent.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── chats-message-sent.png │ │ │ │ ├── chats-message-sent@2x.png │ │ │ │ └── chats-message-sent@3x.png │ │ │ └── chats-shield.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── chats-shield.png │ │ │ │ ├── chats-shield@2x.png │ │ │ │ └── chats-shield@3x.png │ │ ├── groups-assets.xcassets │ │ │ ├── Contents.json │ │ │ ├── groups-ban.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── groups-ban.png │ │ │ │ ├── groups-ban@2x.png │ │ │ │ └── groups-ban@3x.png │ │ │ ├── groups-create.imageset │ │ │ │ ├── Base_Icon.png │ │ │ │ ├── Base_Icon@2x.png │ │ │ │ ├── Base_Icon@3x.png │ │ │ │ └── Contents.json │ │ │ ├── groups-kick.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── groups-kick.png │ │ │ │ ├── groups-kick@2x.png │ │ │ │ └── groups-kick@3x.png │ │ │ ├── groups-lock.imageset │ │ │ │ ├── Base_Icon.png │ │ │ │ ├── Base_Icon@2x.png │ │ │ │ ├── Base_Icon@3x.png │ │ │ │ └── Contents.json │ │ │ ├── groups-shield.imageset │ │ │ │ ├── Base_Icon.png │ │ │ │ ├── Base_Icon@2x.png │ │ │ │ ├── Base_Icon@3x.png │ │ │ │ └── Contents.json │ │ │ ├── groups.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Groups.png │ │ │ │ ├── Groups@2x.png │ │ │ │ └── Groups@3x.png │ │ │ └── new-group-icon.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Icon.png │ │ │ │ ├── Icon@2x.png │ │ │ │ └── Icon@3x.png │ │ ├── messages-assets.xcassets │ │ │ ├── Contents.json │ │ │ ├── actionsheet-grid.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── actionsheet-grid.png │ │ │ │ ├── actionsheet-grid@2x.png │ │ │ │ └── actionsheet-grid@3x.png │ │ │ ├── actionsheet-list.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── actionsheet-list.png │ │ │ │ ├── actionsheet-list@2x.png │ │ │ │ └── actionsheet-list@3x.png │ │ │ ├── add-circle-filled.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── add-circle-filled.png │ │ │ │ ├── add-circle-filled@2x.png │ │ │ │ └── add-circle-filled@3x.png │ │ │ ├── add_reaction.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── iOS Icons.png │ │ │ │ ├── iOS Icons@2x.png │ │ │ │ └── iOS Icons@3x.png │ │ │ ├── ai-image.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── iOS Icons@1x.png │ │ │ │ ├── iOS Icons@2x.png │ │ │ │ └── iOS Icons@3x.png │ │ │ ├── ai_conversation_summary.imageset │ │ │ │ ├── Base_iOS Icons.png │ │ │ │ ├── Base_iOS Icons@2x.png │ │ │ │ ├── Base_iOS Icons@3x.png │ │ │ │ └── Contents.json │ │ │ ├── ai_suggest_reply.imageset │ │ │ │ ├── Base_iOS Icons.png │ │ │ │ ├── Base_iOS Icons@2x.png │ │ │ │ ├── Base_iOS Icons@3x.png │ │ │ │ └── Contents.json │ │ │ ├── arrow-forward-1.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── arrow-forward.png │ │ │ │ ├── arrow-forward@2x.png │ │ │ │ └── arrow-forward@3x.png │ │ │ ├── audio-message-download.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Vector@1x.png │ │ │ │ ├── Vector@2x.png │ │ │ │ └── Vector@3x.png │ │ │ ├── calendar.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Frame@1x.png │ │ │ │ ├── Frame@2x.png │ │ │ │ └── Frame@3x.png │ │ │ ├── collaborative-document-image.imageset │ │ │ │ ├── Collaborative Document@1x.png │ │ │ │ ├── Collaborative Document@2x.png │ │ │ │ ├── Collaborative Document@3x.png │ │ │ │ └── Contents.json │ │ │ ├── collaborative-document-message.imageset │ │ │ │ ├── Base_iOS Icons.png │ │ │ │ ├── Base_iOS Icons@2x.png │ │ │ │ ├── Base_iOS Icons@3x.png │ │ │ │ └── Contents.json │ │ │ ├── collaborative-message-icon.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Icon@1x.png │ │ │ │ ├── Icon@2x.png │ │ │ │ └── Icon@3x.png │ │ │ ├── collaborative-white-board-image.imageset │ │ │ │ ├── Collaborative Whiteboard@1x.png │ │ │ │ ├── Collaborative Whiteboard@2x.png │ │ │ │ ├── Collaborative Whiteboard@3x.png │ │ │ │ └── Contents.json │ │ │ ├── cometchat_audio_file_icon.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── File Type=.mp3, Size=Icon@1x.png │ │ │ │ ├── File Type=.mp3, Size=Icon@2x.png │ │ │ │ └── File Type=.mp3, Size=Icon@3x.png │ │ │ ├── cometchat_image_file_icon.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── File Type=.jpg, Size=Icon@1x.png │ │ │ │ ├── File Type=.jpg, Size=Icon@2x.png │ │ │ │ └── File Type=.jpg, Size=Icon@3x.png │ │ │ ├── cometchat_link_file_icon.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── File Type=.link, Size=Icon@1x.png │ │ │ │ ├── File Type=.link, Size=Icon@2x.png │ │ │ │ └── File Type=.link, Size=Icon@3x.png │ │ │ ├── cometchat_pdf_file_icon.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── File Type=.pdf, Size=Icon@1x.png │ │ │ │ ├── File Type=.pdf, Size=Icon@2x.png │ │ │ │ └── File Type=.pdf, Size=Icon@3x.png │ │ │ ├── cometchat_ppt_file_icon.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── File Type=.ppt, Size=Icon@1x.png │ │ │ │ ├── File Type=.ppt, Size=Icon@2x.png │ │ │ │ └── File Type=.ppt, Size=Icon@3x.png │ │ │ ├── cometchat_text_file_icon.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── File Type=.txt, Size=Icon@1x.png │ │ │ │ ├── File Type=.txt, Size=Icon@2x.png │ │ │ │ └── File Type=.txt, Size=Icon@3x.png │ │ │ ├── cometchat_unknown_file_icon.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── File Type=_, Size=Icon@1x.png │ │ │ │ ├── File Type=_, Size=Icon@2x.png │ │ │ │ └── File Type=_, Size=Icon@3x.png │ │ │ ├── cometchat_video_file_icon.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── File Type=.mov, Size=Icon@1x.png │ │ │ │ ├── File Type=.mov, Size=Icon@2x.png │ │ │ │ └── File Type=.mov, Size=Icon@3x.png │ │ │ ├── cometchat_word_file_icon.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── File Type=.word, Size=Icon@1x.png │ │ │ │ ├── File Type=.word, Size=Icon@2x.png │ │ │ │ └── File Type=.word, Size=Icon@3x.png │ │ │ ├── cometchat_xlsx_file_icon.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── File Type=.xlsx, Size=Icon@1x.png │ │ │ │ ├── File Type=.xlsx, Size=Icon@2x.png │ │ │ │ └── File Type=.xlsx, Size=Icon@3x.png │ │ │ ├── cometchat_zip_file_icon.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── File Type=.zip, Size=Icon@1x.png │ │ │ │ ├── File Type=.zip, Size=Icon@2x.png │ │ │ │ └── File Type=.zip, Size=Icon@3x.png │ │ │ ├── copy-paste.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── copy-paste-1.png │ │ │ │ ├── copy-paste.png │ │ │ │ ├── copy-paste@2x-1.png │ │ │ │ ├── copy-paste@2x.png │ │ │ │ ├── copy-paste@3x-1.png │ │ │ │ └── copy-paste@3x.png │ │ │ ├── custom-send.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── send@1x.png │ │ │ │ ├── send@2x.png │ │ │ │ └── send@3x.png │ │ │ ├── de-selected-option-image.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Selection.png │ │ │ │ ├── Selection@2x.png │ │ │ │ └── Selection@3x.png │ │ │ ├── default-image.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── default-image.png │ │ │ ├── default-sticker-image.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Image 1.png │ │ │ │ ├── Image 1@2x.png │ │ │ │ └── Image 1@3x.png │ │ │ ├── deleted-message.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Icon.png │ │ │ │ ├── Icon@2x.png │ │ │ │ └── Icon@3x.png │ │ │ ├── download.imageset │ │ │ │ ├── Base_Icon@1x.png │ │ │ │ ├── Base_Icon@2x.png │ │ │ │ ├── Base_Icon@3x.png │ │ │ │ └── Contents.json │ │ │ ├── drag-options-icon.imageset │ │ │ │ ├── Base_Icon.png │ │ │ │ ├── Base_Icon@2x.png │ │ │ │ ├── Base_Icon@3x.png │ │ │ │ └── Contents.json │ │ │ ├── empty-icon.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Empty Illustration@1x 1.png │ │ │ │ ├── Empty Illustration@1x.png │ │ │ │ ├── Empty Illustration@2x 1.png │ │ │ │ ├── Empty Illustration@2x.png │ │ │ │ ├── Empty Illustration@3x 1.png │ │ │ │ └── Empty Illustration@3x.png │ │ │ ├── error-clock.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Icon-40.png │ │ │ │ ├── Icon-40@2x.png │ │ │ │ └── Icon-40@3x.png │ │ │ ├── error-icon.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Frame 96@1x 1.png │ │ │ │ ├── Frame 96@2x 1.png │ │ │ │ ├── Frame 96@3x 1.png │ │ │ │ ├── noComment@1x.png │ │ │ │ ├── noComment@2x.png │ │ │ │ └── noComment@3x.png │ │ │ ├── initiated_video_call.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Icon.png │ │ │ │ ├── Icon@2x.png │ │ │ │ └── Icon@3x.png │ │ │ ├── initiated_voice_call.imageset │ │ │ │ ├── Base_Icon.png │ │ │ │ ├── Base_Icon@2x.png │ │ │ │ ├── Base_Icon@3x.png │ │ │ │ └── Contents.json │ │ │ ├── message-composer-attachment.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── message-composer-attachment.png │ │ │ │ ├── message-composer-attachment@2x.png │ │ │ │ └── message-composer-attachment@3x.png │ │ │ ├── message-composer-audio-file.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── audio@1x.png │ │ │ │ ├── audio@3x-1.png │ │ │ │ └── audio@3x.png │ │ │ ├── message-composer-close.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── message-composer-close.png │ │ │ │ ├── message-composer-close@2x.png │ │ │ │ └── message-composer-close@3x.png │ │ │ ├── message-composer-heart.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── message-composer-heart.png │ │ │ │ ├── message-composer-heart@2x.png │ │ │ │ └── message-composer-heart@3x.png │ │ │ ├── message-composer-plus.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── message-composer-plus.png │ │ │ │ ├── message-composer-plus@2x.png │ │ │ │ └── message-composer-plus@3x.png │ │ │ ├── message-composer-send.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── message-composer-send.png │ │ │ │ ├── message-composer-send@2x.png │ │ │ │ └── message-composer-send@3x.png │ │ │ ├── message-composer-sticker.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── message-composer-sticker.png │ │ │ │ ├── message-composer-sticker@2x.png │ │ │ │ └── message-composer-sticker@3x.png │ │ │ ├── message-deleted.imageset │ │ │ │ ├── Base_Icon.png │ │ │ │ ├── Base_Icon@2x.png │ │ │ │ ├── Base_Icon@3x.png │ │ │ │ └── Contents.json │ │ │ ├── message-document.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Icon.png │ │ │ │ ├── Icon@2x.png │ │ │ │ └── Icon@3x.png │ │ │ ├── message-translate.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── message-translate.png │ │ │ │ ├── message-translate@2x.png │ │ │ │ ├── message-translate@3x.png │ │ │ │ ├── message-translate@4x-1.png │ │ │ │ ├── message-translate@4x-2.png │ │ │ │ └── message-translate@4x.png │ │ │ ├── message-translate@4x.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── message-translate@4x.png │ │ │ ├── messageIndicator-down-arrow.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── arrowDown.png │ │ │ │ ├── arrowDown2x.png │ │ │ │ └── arrowDown3x.png │ │ │ ├── messages-attach.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── messages-attach.png │ │ │ │ ├── messages-attach@2x.png │ │ │ │ └── messages-attach@3x.png │ │ │ ├── messages-attach@4x.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── messages-attach@4x.png │ │ │ ├── messages-audio-call.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── messages-audio-call.png │ │ │ │ ├── messages-audio-call@2x.png │ │ │ │ └── messages-audio-call@3x.png │ │ │ ├── messages-audio-file.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Yes.png │ │ │ │ ├── Yes@2x.png │ │ │ │ └── Yes@3x.png │ │ │ ├── messages-audio-file@4x.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── messages-audio-file@4x.png │ │ │ ├── messages-camera.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── messages-camera.png │ │ │ │ ├── messages-camera@2x.png │ │ │ │ └── messages-camera@3x.png │ │ │ ├── messages-close-circle.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── messages-close-circle.png │ │ │ │ ├── messages-close-circle@2x.png │ │ │ │ └── messages-close-circle@3x.png │ │ │ ├── messages-delete.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── messages-delete.png │ │ │ │ ├── messages-delete@2x.png │ │ │ │ └── messages-delete@3x.png │ │ │ ├── messages-delivered.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── State=Received.png │ │ │ │ ├── State=Received@2x.png │ │ │ │ └── State=Received@3x.png │ │ │ ├── messages-edit.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── messages-edit-1.png │ │ │ │ ├── messages-edit.png │ │ │ │ ├── messages-edit@2x-1.png │ │ │ │ ├── messages-edit@2x.png │ │ │ │ ├── messages-edit@3x-1.png │ │ │ │ └── messages-edit@3x.png │ │ │ ├── messages-emoji-keyboard-activity.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── messages-emoji-keyboard-activity.png │ │ │ │ └── messages-emoji-keyboard-activity@2x.png │ │ │ ├── messages-emoji-keyboard-animals.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── messages-emoji-keyboard-animals.png │ │ │ │ └── messages-emoji-keyboard-animals@2x.png │ │ │ ├── messages-emoji-keyboard-flags.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── messages-emoji-keyboard-flags.png │ │ │ │ └── messages-emoji-keyboard-flags@2x.png │ │ │ ├── messages-emoji-keyboard-food.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── messages-emoji-keyboard-food.png │ │ │ │ └── messages-emoji-keyboard-food@2x.png │ │ │ ├── messages-emoji-keyboard-objects.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── messages-emoji-keyboard-objects.png │ │ │ │ └── messages-emoji-keyboard-objects@2x.png │ │ │ ├── messages-emoji-keyboard-smileys.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── messages-emoji-keyboard-smileys.png │ │ │ │ └── messages-emoji-keyboard-smileys@2x.png │ │ │ ├── messages-emoji-keyboard-symbols.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── messages-emoji-keyboard-symbols.png │ │ │ │ └── messages-emoji-keyboard-symbols@2x.png │ │ │ ├── messages-emoji-keyboard-travel.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── messages-emoji-keyboard-travel.png │ │ │ │ └── messages-emoji-keyboard-travel@2x.png │ │ │ ├── messages-emoji.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── messages-emoji.png │ │ │ │ ├── messages-emoji@2x.png │ │ │ │ └── messages-emoji@3x.png │ │ │ ├── messages-end-call.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── messages-end-call.png │ │ │ │ ├── messages-end-call@2x.png │ │ │ │ └── messages-end-call@3x.png │ │ │ ├── messages-error.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Message Status@1x.png │ │ │ │ ├── Message Status@2x.png │ │ │ │ └── Message Status@3x.png │ │ │ ├── messages-file-upload.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── messages-file-upload.png │ │ │ │ ├── messages-file-upload@2x.png │ │ │ │ └── messages-file-upload@3x.png │ │ │ ├── messages-forward-message.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── messages-forward-message.png │ │ │ │ ├── messages-forward-message@2x.png │ │ │ │ └── messages-forward-message@3x.png │ │ │ ├── messages-heart.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── messages-heart.png │ │ │ │ ├── messages-heart@2x.png │ │ │ │ └── messages-heart@3x.png │ │ │ ├── messages-image.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── messages-image.png │ │ │ │ ├── messages-image@2x.png │ │ │ │ └── messages-image@3x.png │ │ │ ├── messages-image@4x.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── messages-image@4x.png │ │ │ ├── messages-incoming-audio-call.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── messages-incoming-audio-call.png │ │ │ │ ├── messages-incoming-audio-call@2x.png │ │ │ │ └── messages-incoming-audio-call@3x.png │ │ │ ├── messages-incoming-video-call.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── messages-incoming-video-call.png │ │ │ │ ├── messages-incoming-video-call@2x.png │ │ │ │ └── messages-incoming-video-call@3x.png │ │ │ ├── messages-info.imageset.zip │ │ │ ├── messages-info.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── messages-info.png │ │ │ │ ├── messages-info@2x.png │ │ │ │ └── messages-info@3x.png │ │ │ ├── messages-location-map.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── messages-location-map.png │ │ │ ├── messages-location.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Icon.png │ │ │ │ ├── Icon@2x.png │ │ │ │ └── Icon@3x.png │ │ │ ├── messages-media-play.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── messages-media-play.png │ │ │ │ ├── messages-media-play@2x.png │ │ │ │ └── messages-media-play@3x.png │ │ │ ├── messages-photo.imageset │ │ │ │ ├── Base_Icon.png │ │ │ │ ├── Base_Icon@2x.png │ │ │ │ ├── Base_Icon@3x.png │ │ │ │ └── Contents.json │ │ │ ├── messages-poll.imageset │ │ │ │ ├── Base_Icon.png │ │ │ │ ├── Base_Icon@2x.png │ │ │ │ ├── Base_Icon@3x.png │ │ │ │ └── Contents.json │ │ │ ├── messages-read.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── State=Read.png │ │ │ │ ├── State=Read@2x.png │ │ │ │ └── State=Read@3x.png │ │ │ ├── messages-sent.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── State=Send.png │ │ │ │ ├── State=Send@2x.png │ │ │ │ └── State=Send@3x.png │ │ │ ├── messages-share.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── messages-share-1.png │ │ │ │ ├── messages-share.png │ │ │ │ ├── messages-share@2x-1.png │ │ │ │ ├── messages-share@2x.png │ │ │ │ ├── messages-share@3x-1.png │ │ │ │ └── messages-share@3x.png │ │ │ ├── messages-stickers.imageset │ │ │ │ ├── Base_Icon.png │ │ │ │ ├── Base_Icon@2x.png │ │ │ │ ├── Base_Icon@3x.png │ │ │ │ └── Contents.json │ │ │ ├── messages-thread.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Icon.png │ │ │ │ ├── Icon@2x.png │ │ │ │ └── Icon@3x.png │ │ │ ├── messages-unsafe-content.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── messages-unsafe-content.png │ │ │ │ ├── messages-unsafe-content@2x.png │ │ │ │ └── messages-unsafe-content@3x.png │ │ │ ├── messages-video-call.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── messages-video-call.png │ │ │ │ ├── messages-video-call@2x.png │ │ │ │ └── messages-video-call@3x.png │ │ │ ├── messages-wait.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── State=Sending.png │ │ │ │ ├── State=Sending@2x.png │ │ │ │ └── State=Sending@3x.png │ │ │ ├── microphone-circle.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── microphone-circle.png │ │ │ │ ├── microphone-circle@2x.png │ │ │ │ └── microphone-circle@3x.png │ │ │ ├── pdf-file.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── File Type@1x.png │ │ │ │ ├── File Type@2x.png │ │ │ │ └── File Type@3x.png │ │ │ ├── photo-library.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── photo-library.png │ │ │ │ ├── photo-library@2x.png │ │ │ │ └── photo-library@3x.png │ │ │ ├── received_video_call.imageset │ │ │ │ ├── Base_Icon.png │ │ │ │ ├── Base_Icon@2x.png │ │ │ │ ├── Base_Icon@3x.png │ │ │ │ └── Contents.json │ │ │ ├── received_voice_call.imageset │ │ │ │ ├── Base_Icon.png │ │ │ │ ├── Base_Icon@2x.png │ │ │ │ ├── Base_Icon@3x.png │ │ │ │ └── Contents.json │ │ │ ├── reply-message-in-private.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── reply-message-in-private.png │ │ │ │ ├── reply-message-in-private@2x.png │ │ │ │ └── reply-message-in-private@3x.png │ │ │ ├── reply-message.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── reply-message.png │ │ │ │ ├── reply-message@2x.png │ │ │ │ └── reply-message@3x.png │ │ │ ├── rightarrow.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Frame@1x.png │ │ │ │ ├── Frame@2x.png │ │ │ │ └── Frame@3x.png │ │ │ ├── selected-option-image.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Selection.png │ │ │ │ ├── Selection@2x.png │ │ │ │ └── Selection@3x.png │ │ │ ├── send-message-in-private.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── send-message-in-private.png │ │ │ │ ├── send-message-in-private@2x.png │ │ │ │ └── send-message-in-private@3x.png │ │ │ ├── sticker-image-filled.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Icon@1x.png │ │ │ │ ├── Icon@2x.png │ │ │ │ └── Icon@3x.png │ │ │ ├── sticker-image.imageset │ │ │ │ ├── Base_iOS Icons@1x.png │ │ │ │ ├── Base_iOS Icons@2x.png │ │ │ │ ├── Base_iOS Icons@3x.png │ │ │ │ └── Contents.json │ │ │ ├── sticker-keyboard.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Keyboard.png │ │ │ │ └── Keyboard@2x.png │ │ │ ├── threaded-message.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── threaded-message-1.png │ │ │ │ ├── threaded-message.png │ │ │ │ ├── threaded-message@2x-1.png │ │ │ │ ├── threaded-message@2x.png │ │ │ │ ├── threaded-message@3x-1.png │ │ │ │ └── threaded-message@3x.png │ │ │ ├── time-clock.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Frame@1x.png │ │ │ │ ├── Frame@2x.png │ │ │ │ └── Frame@3x.png │ │ │ ├── time-zone-earth.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Vector@1x.png │ │ │ │ ├── Vector@2x.png │ │ │ │ └── Vector@3x.png │ │ │ ├── translate-icon.imageset │ │ │ │ ├── Base_iOS Icons@1x.png │ │ │ │ ├── Base_iOS Icons@2x.png │ │ │ │ ├── Base_iOS Icons@3x.png │ │ │ │ └── Contents.json │ │ │ ├── video-call.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── video-call.png │ │ │ │ ├── video-call@2x.png │ │ │ │ └── video-call@3x.png │ │ │ └── whatsapp-background.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── a4d98907574aab5accd76f5322ad779f 1.jpg │ │ │ │ ├── a4d98907574aab5accd76f5322ad779f 2.jpg │ │ │ │ └── a4d98907574aab5accd76f5322ad779f.jpg │ │ └── voice-recording-wavefrom.gif │ ├── Shared │ │ ├── CometChatUIKit │ │ │ ├── CometChatUIKit.swift │ │ │ ├── CometChatUIKitHelper.swift │ │ │ └── UIKitSettings.swift │ │ ├── Constants │ │ │ ├── AssetConstants.swift │ │ │ ├── ExtensionConstants.swift │ │ │ └── UIKitConstants.swift │ │ ├── Events │ │ │ ├── CallEvents │ │ │ │ ├── CometChatCallEventListener.swift │ │ │ │ └── CometChatCallEvents.swift │ │ │ ├── ConversationEvents │ │ │ │ ├── CometChatConversationEventListener.swift │ │ │ │ └── CometChatConversationEvents.swift │ │ │ ├── GroupEvents │ │ │ │ ├── CometChatGroupEventListener.swift │ │ │ │ └── CometChatGroupEvents.swift │ │ │ ├── MessageEvents │ │ │ │ ├── CometChatMessageEventListener.swift │ │ │ │ └── CometChatMessageEvents.swift │ │ │ ├── SDKEventInitializer.swift │ │ │ ├── UIEvents │ │ │ │ ├── CometChatUIEventListener.swift │ │ │ │ └── CometChatUIEvents.swift │ │ │ └── UserEvent │ │ │ │ ├── CometChatUserEventListener.swift │ │ │ │ └── CometChatUserEvents.swift │ │ ├── FormFields │ │ │ ├── ActionElement.swift │ │ │ ├── ActionEntity.swift │ │ │ ├── ButtonElement.swift │ │ │ ├── CardMessage.swift │ │ │ ├── CheckboxElement.swift │ │ │ ├── CustomInteractiveMessage.swift │ │ │ ├── DateTimeElement.swift │ │ │ ├── DividerEntity.swift │ │ │ ├── DropdownElement.swift │ │ │ ├── ElementEntity.swift │ │ │ ├── FormMessage.swift │ │ │ ├── LabelElement.swift │ │ │ ├── OptionElement.swift │ │ │ ├── RadioButtonElement.swift │ │ │ ├── SchedulerMessage.swift │ │ │ ├── SingleSelectElement.swift │ │ │ └── TextInputElement.swift │ │ ├── Framework │ │ │ ├── AdditionalConfiguration.swift │ │ │ ├── ChatConfigurator.swift │ │ │ ├── DataSource.swift │ │ │ ├── DataSourceDecorator.swift │ │ │ ├── DefaultExtensions.swift │ │ │ ├── ExtensionDataSource.swift │ │ │ ├── ExtensionModerator.swift │ │ │ └── MessagesDataSource.swift │ │ ├── Helpers │ │ │ ├── Array + Extensions.swift │ │ │ ├── CallEntity │ │ │ │ └── CallEntity.swift │ │ │ ├── CallInitiator │ │ │ │ └── CallInitiator.swift │ │ │ ├── Camera Handler │ │ │ │ └── CameraHandler.swift │ │ │ ├── CircularProgressBar │ │ │ │ └── DownloadableCircularProgressBar.swift │ │ │ ├── CometChatImageService │ │ │ │ ├── ImageServiceHelper │ │ │ │ │ └── ImageService.swift │ │ │ │ └── URLSessionTaskHelper │ │ │ │ │ └── URLSessionTask+Cancellable.swift │ │ │ ├── CometChatListBase │ │ │ │ ├── CometChatListBase.swift │ │ │ │ └── ListBaseStyle.swift │ │ │ ├── CometChatLocalize │ │ │ │ └── CometChatLocalize.swift │ │ │ ├── CometChatTheme │ │ │ │ ├── CometChatTheme_v4.swift │ │ │ │ ├── Palette.swift │ │ │ │ └── Typography.swift │ │ │ ├── CometChatWebView │ │ │ │ └── CometChatWebView.swift │ │ │ ├── ConversationHelper.swift │ │ │ ├── DeprecatedClass.swift │ │ │ ├── DeviceDetection │ │ │ │ └── DeviceDetection.swift │ │ │ ├── Helper Extensions.swift │ │ │ ├── Image Transformation │ │ │ │ └── ImageTransformation.swift │ │ │ ├── Large Emojis │ │ │ │ └── LargeEmojis.swift │ │ │ ├── Large Titles │ │ │ │ ├── LargeTitleDisplayMode+String.swift │ │ │ │ └── UIViewController+LargeTitle.swift │ │ │ ├── Set Empty Message │ │ │ │ └── EmptyMessage.swift │ │ │ ├── ShimmerEffect │ │ │ │ └── CometChatShimmer.swift │ │ │ ├── SoundManager │ │ │ │ ├── CometChatSoundManager.swift │ │ │ │ └── SoundManagerConfiguration.swift │ │ │ ├── StateView.swift │ │ │ ├── TableViewTransformation │ │ │ │ └── TableViewTransformation.swift │ │ │ ├── Text Tranformation │ │ │ │ └── TextTransformation.swift │ │ │ └── View Transformation │ │ │ │ ├── Gradient.swift │ │ │ │ ├── TopMostViewController.swift │ │ │ │ ├── UISearchBar.swift │ │ │ │ ├── UIView + XIB.swift │ │ │ │ └── ViewTransformation.swift │ │ ├── Models │ │ │ ├── BaseStyle.swift │ │ │ ├── CometChatCornerStyle.swift │ │ │ ├── CometChatGroupMemberOption.swift │ │ │ ├── CometChatMessageComposerAction.swift │ │ │ ├── CometChatMessageOption.swift │ │ │ ├── CometChatMessageTemplate.swift │ │ │ ├── CometChatOption.swift │ │ │ ├── InteractiveUIElements │ │ │ │ └── InteractiveConstants.swift │ │ │ └── LoggedInUserInformation.swift │ │ ├── Resources │ │ │ ├── AIRepliesCell.xib │ │ │ ├── AudioVisualizationView.xib │ │ │ ├── Color.xcassets │ │ │ │ ├── Contents.json │ │ │ │ ├── accent.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── background.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── error.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── primary.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── secondary.colorset │ │ │ │ │ └── Contents.json │ │ │ │ └── success.colorset │ │ │ │ │ └── Contents.json │ │ │ ├── CometChatActionItem.xib │ │ │ ├── CometChatDocumentBubble.xib │ │ │ ├── CometChatListItem.xib │ │ │ ├── CometChatSectionList.xib │ │ │ ├── CometChatSectionListItem.xib │ │ │ ├── CometChatSmartReplies.xib │ │ │ ├── CometChatSmartRepliesItem.xib │ │ │ ├── EmptyTableViewCell.xib │ │ │ ├── IncomingCall.wav │ │ │ ├── IncomingMessage.wav │ │ │ ├── IncomingMessageFromOther.wav │ │ │ ├── NewAnnouncement.wav │ │ │ ├── OutgoingCall.wav │ │ │ ├── OutgoingMessage.wav │ │ │ ├── ReactorsView.xib │ │ │ ├── ar.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── de.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── en-GB.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── en.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── es.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── fr.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── hi 2.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── hi.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── hu.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── ja.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── ko.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── lt.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── ms.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── nl.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── pt.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── ru.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── shared-assets.xcassets │ │ │ │ ├── Contents.json │ │ │ │ ├── add-reaction.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── messages-add-reaction-dark.png │ │ │ │ │ ├── messages-add-reaction-dark@2x.png │ │ │ │ │ ├── messages-add-reaction-dark@3x.png │ │ │ │ │ ├── messages-add-reaction.png │ │ │ │ │ ├── messages-add-reaction@2x.png │ │ │ │ │ └── messages-add-reaction@3x.png │ │ │ │ ├── ai-auxiliary.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Frame@1x.png │ │ │ │ │ ├── Frame@2x.png │ │ │ │ │ └── Frame@3x.png │ │ │ │ ├── ai-empty-replies.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── message-circle-x-@1x.png │ │ │ │ │ ├── message-circle-x-@2x.png │ │ │ │ │ └── message-circle-x-@3x.png │ │ │ │ ├── ai-error.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── message-circle-exclamation-@1x.png │ │ │ │ │ ├── message-circle-exclamation-@2x.png │ │ │ │ │ └── message-circle-exclamation-@3x.png │ │ │ │ ├── collaborative-document.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Name=collaborative_document, Fill=Yes.png │ │ │ │ │ ├── Name=collaborative_document, Fill=Yes@2x.png │ │ │ │ │ └── Name=collaborative_document, Fill=Yes@3x.png │ │ │ │ ├── collaborative-whiteboard.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Name=collaborative_whiteboard, Fill=Yes.png │ │ │ │ │ ├── Name=collaborative_whiteboard, Fill=Yes@2x.png │ │ │ │ │ └── Name=collaborative_whiteboard, Fill=Yes@3x.png │ │ │ │ ├── cometchatlistbase-back.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── cometchatlistbase-back.png │ │ │ │ │ ├── cometchatlistbase-back@2x.png │ │ │ │ │ └── cometchatlistbase-back@3x.png │ │ │ │ ├── dropDown.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── dropDownBlack 1.jpg │ │ │ │ │ ├── dropDownBlack 2.jpg │ │ │ │ │ └── dropDownBlack.jpg │ │ │ │ ├── error-alert.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Screenshot 2024-04-15 at 1.17.48 PM 1.png │ │ │ │ │ ├── Screenshot 2024-04-15 at 1.17.48 PM 2.png │ │ │ │ │ └── Screenshot 2024-04-15 at 1.17.48 PM.png │ │ │ │ ├── keyboard.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── keyboard@1x.png │ │ │ │ │ └── keyboard@2x.png │ │ │ │ ├── messages-emoji-keyboard-add-reaction.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── messages-emoji-keyboard-add-reaction.png │ │ │ │ │ └── messages-emoji-keyboard-add-reaction@2x.png │ │ │ │ ├── microphone.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Icon-20.png │ │ │ │ │ ├── Icon-20@2x.png │ │ │ │ │ └── mic_12614391 (3) 2.png │ │ │ │ ├── polls.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Name=poll, Fill=Yes.png │ │ │ │ │ ├── Name=poll, Fill=Yes@2x.png │ │ │ │ │ └── Name=poll, Fill=Yes@3x.png │ │ │ │ └── sticker.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── sticker.png │ │ │ │ │ └── sticker@2x.png │ │ │ ├── sv.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── tr.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── zh-TW.lproj │ │ │ │ └── Localizable.strings │ │ │ └── zh.lproj │ │ │ │ └── Localizable.strings │ │ ├── Utils │ │ │ ├── CallUtils.swift │ │ │ ├── CometChatICSParser.swift │ │ │ ├── ConversationsUtils.swift │ │ │ ├── GroupMembersUtils.swift │ │ │ ├── InteractiveUtils.swift │ │ │ ├── MessageReceiptUtils.swift │ │ │ ├── MessageUtils.swift │ │ │ ├── NetworkUtils.swift │ │ │ └── SchedulerUtils.swift │ │ └── Views │ │ │ ├── Action Item │ │ │ ├── ActionItem.swift │ │ │ └── CometChatActionItem │ │ │ │ └── CometChatActionItem.swift │ │ │ ├── Activity Indicator │ │ │ ├── ActivityIndicator.swift │ │ │ └── ActivityIndicatorView.swift │ │ │ ├── Audio Bubble │ │ │ ├── AudioBubbleStyle.swift │ │ │ └── CometChatAudioBubble.swift │ │ │ ├── Avatar │ │ │ ├── AvatarStyle.swift │ │ │ └── CometChatAvatar.swift │ │ │ ├── Badge │ │ │ ├── BadgeCountStyle.swift │ │ │ └── CometChatBadge.swift │ │ │ ├── Button │ │ │ ├── ButtonStyle.swift │ │ │ └── CometChatButton.swift │ │ │ ├── Date │ │ │ ├── CometChatDate.swift │ │ │ └── DateStyle.swift │ │ │ ├── Delete Bubble │ │ │ ├── CometChatDeleteBubble.swift │ │ │ └── DeleteBubbleStyle.swift │ │ │ ├── Dialog │ │ │ ├── CometChatDialog.swift │ │ │ └── CometChatDialogStyle.swift │ │ │ ├── Emoji Keyboard │ │ │ ├── CometChatEmoji.swift │ │ │ ├── CometChatEmojiCategory.swift │ │ │ ├── CometChatEmojiHeader.swift │ │ │ ├── CometChatEmojiKeyboard.swift │ │ │ ├── CometChatEmojiKeyboardItem.swift │ │ │ ├── CometChatEmojiKeyboardJSON.swift │ │ │ └── EmojiKeyboardStyle.swift │ │ │ ├── EmptyCell │ │ │ └── EmptyTableViewCell.swift │ │ │ ├── File Bubble │ │ │ ├── CometChatFileBubble.swift │ │ │ └── FileBubbleStyle.swift │ │ │ ├── Gradient View │ │ │ └── CometChatGradientView.swift │ │ │ ├── Group Action Bubble │ │ │ ├── CometChatGroupActionBubble.swift │ │ │ └── GroupActionBubbleStyle.swift │ │ │ ├── Image Bubble │ │ │ ├── CometChatImageBubble.swift │ │ │ └── ImageBubbleStyle.swift │ │ │ ├── Interactive Bubble │ │ │ ├── CardBubbleStyle.swift │ │ │ ├── CometChatCardBubble.swift │ │ │ ├── CometChatFormBubble.swift │ │ │ ├── CometChatQuickView.swift │ │ │ ├── FormBubbleStyle.swift │ │ │ └── QuickViewStyle.swift │ │ │ ├── List Item │ │ │ ├── CometChatListItem.swift │ │ │ └── ListItemStyle.swift │ │ │ ├── Live Reaction │ │ │ └── CometChatLiveReaction.swift │ │ │ ├── MediaRecorder │ │ │ ├── AudioWaveForm │ │ │ │ ├── AudioPlayerManager.swift │ │ │ │ ├── AudioRecorderManager.swift │ │ │ │ ├── Classes │ │ │ │ │ ├── AVAudioFileExtensions.swift │ │ │ │ │ ├── AudioContext.swift │ │ │ │ │ ├── AudioVisualizationView.swift │ │ │ │ │ ├── BaseNibView.swift │ │ │ │ │ └── Chronometer.swift │ │ │ │ └── ViewModel.swift │ │ │ ├── CometChatMediaRecorder.swift │ │ │ ├── MediRecorderViewModel.swift │ │ │ └── MediaRecorderStyle.swift │ │ │ ├── Message Action Sheet │ │ │ ├── ActionSheetStyle.swift │ │ │ ├── CometChatActionSheet.swift │ │ │ ├── DimmedView.swift │ │ │ ├── Grid Mode Cell │ │ │ │ └── GridView.swift │ │ │ ├── List Mode Cell │ │ │ │ └── ListModeCell.swift │ │ │ ├── PanContainerView.swift │ │ │ ├── PanModal.h │ │ │ ├── PanModalAnimator.swift │ │ │ ├── PanModalHeight.swift │ │ │ ├── PanModalPresentable+Defaults.swift │ │ │ ├── PanModalPresentable+LayoutHelpers.swift │ │ │ ├── PanModalPresentable+UIViewController.swift │ │ │ ├── PanModalPresentable.swift │ │ │ ├── PanModalPresentationAnimator.swift │ │ │ ├── PanModalPresentationController.swift │ │ │ ├── PanModalPresentationDelegate.swift │ │ │ ├── PanModalPresenter.swift │ │ │ ├── UIViewController+PanModalPresenter.swift │ │ │ ├── UserGroupHeaderPresentable.swift │ │ │ └── UserGroupMemberPresentable.swift │ │ │ ├── Message Bubble │ │ │ ├── CometChatMessageBubble.swift │ │ │ └── MessageBubbleStyle.swift │ │ │ ├── Message Hyperlink │ │ │ ├── HyperlinkBuilder.swift │ │ │ ├── HyperlinkLabel.swift │ │ │ └── HyperlinkType.swift │ │ │ ├── Message Input │ │ │ ├── CometChatMessageInput.swift │ │ │ └── MessageInputStyle.swift │ │ │ ├── New Message Indicator │ │ │ ├── CometChatNewMessageIndicator.swift │ │ │ └── NewMessageIndicatorStyle.swift │ │ │ ├── Receipt │ │ │ ├── CometChatReceipt.swift │ │ │ └── ReceiptStyle.swift │ │ │ ├── Scheduler Bubble │ │ │ ├── CometChatSchedulerBubble.swift │ │ │ ├── CometChatTimeSlotSelector.swift │ │ │ ├── InternalViews │ │ │ │ ├── CalendarView.swift │ │ │ │ ├── ConfirmationView.swift │ │ │ │ ├── InteractedView.swift │ │ │ │ ├── SchedulerHeaderView.swift │ │ │ │ ├── SuggestionTimeView.swift │ │ │ │ └── TimeSlotView.swift │ │ │ ├── SchedulerBubbleStyle.swift │ │ │ └── TimeSlotSelectorStyle.swift │ │ │ ├── Status Indicator │ │ │ ├── CometChatStatusIndicator.swift │ │ │ └── StatusIndicatorStyle.swift │ │ │ ├── Text Bubble │ │ │ ├── CometChatTextBubble.swift │ │ │ └── TextBubbleStyle.swift │ │ │ ├── Typing Indicator │ │ │ ├── CometChatTypingIndicator.swift │ │ │ └── TypingIndicatorStyle.swift │ │ │ └── Video Bubble │ │ │ ├── CometChatVideoBubble.swift │ │ │ └── VideoBubbleStyle.swift │ ├── Threaded Message Header │ │ ├── CometChatThreadedMessageHeader + Properties.swift │ │ ├── CometChatThreadedMessageHeader.swift │ │ ├── ThreadedMessageHeaderStyle.swift │ │ └── ThreadedMessageHeaderViewModel.swift │ └── Users │ │ ├── CometChatUsers + Properties.swift │ │ ├── CometChatUsers.swift │ │ ├── UsersBuilder.swift │ │ ├── UsersShimmerView.swift │ │ ├── UsersStyle.swift │ │ ├── UsersViewModel + UsersEventListener.swift │ │ └── UsersViewModel.swift ├── Extensions │ ├── CometChatSDK+Extensions.swift │ ├── GIFImageView.swift │ ├── NSLayoutConstraint+Extensions.swift │ ├── Shimmer Views │ │ └── ReactionListShimmer.swift │ └── UIView+Extensions.swift ├── Info.plist ├── PrivacyInfo.xcprivacy ├── Theming │ ├── .DS_Store │ ├── Spacing │ │ └── CometChatSpacing.swift │ ├── Theme │ │ ├── CometChatColorExtensions.swift │ │ └── CometChatTheme.swift │ └── Typography │ │ └── CometChatTypography.swift └── changelog.md ├── NotificationExtension ├── Info.plist ├── NotificationExtension.entitlements └── NotificationService.swift ├── Package.swift ├── Podfile ├── README.md ├── SampleApp ├── .DS_Store ├── AppConstants.swift ├── AppDelegate.swift ├── Assets.xcassets │ ├── .DS_Store │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ ├── 100.png │ │ ├── 102.png │ │ ├── 1024.png │ │ ├── 108.png │ │ ├── 114.png │ │ ├── 120 1.png │ │ ├── 120.png │ │ ├── 128.png │ │ ├── 144.png │ │ ├── 152.png │ │ ├── 16.png │ │ ├── 167.png │ │ ├── 172.png │ │ ├── 180.png │ │ ├── 196.png │ │ ├── 20.png │ │ ├── 216.png │ │ ├── 234.png │ │ ├── 256.png │ │ ├── 258.png │ │ ├── 29 1.png │ │ ├── 29.png │ │ ├── 32.png │ │ ├── 40 1.png │ │ ├── 40 2.png │ │ ├── 40.png │ │ ├── 48.png │ │ ├── 50.png │ │ ├── 512.png │ │ ├── 55.png │ │ ├── 57.png │ │ ├── 58 1.png │ │ ├── 58.png │ │ ├── 60.png │ │ ├── 64.png │ │ ├── 66.png │ │ ├── 72.png │ │ ├── 76.png │ │ ├── 80 1.png │ │ ├── 80.png │ │ ├── 87.png │ │ ├── 88.png │ │ ├── 92.png │ │ ├── Contents.json │ │ ├── Icon-App-20x20@1x.png │ │ ├── Icon-App-20x20@2x.png │ │ ├── Icon-App-20x20@3x.png │ │ ├── Icon-App-29x29@1x.png │ │ ├── Icon-App-29x29@2x.png │ │ ├── Icon-App-29x29@3x.png │ │ ├── Icon-App-40x40@1x.png │ │ ├── Icon-App-40x40@2x.png │ │ ├── Icon-App-40x40@3x.png │ │ ├── Icon-App-60x60@2x.png │ │ ├── Icon-App-60x60@3x.png │ │ ├── Icon-App-76x76@1x.png │ │ ├── Icon-App-76x76@2x.png │ │ ├── Icon-App-83.5x83.5@2x.png │ │ ├── appstore.png │ │ └── iTunesArtwork@2x-1.png │ ├── CometChat horizontal logo 4.imageset │ │ └── Contents.json │ ├── Contents.json │ ├── India-flag.imageset │ │ ├── Contents.json │ │ ├── IN - India.png │ │ ├── IN - India@2x.png │ │ └── IN - India@3x.png │ ├── ban_member.imageset │ │ ├── Base_iOS Icons.png │ │ ├── Base_iOS Icons@2x.png │ │ ├── Base_iOS Icons@3x.png │ │ └── Contents.json │ ├── ban_members.imageset │ │ ├── Contents.json │ │ ├── iOS Icons.png │ │ ├── iOS Icons@2x.png │ │ └── iOS Icons@3x.png │ ├── block_image.imageset │ │ ├── Contents.json │ │ ├── iOS Icons.png │ │ ├── iOS Icons@2x.png │ │ └── iOS Icons@3x.png │ ├── cometchat-logo-with-name.imageset │ │ ├── CometChat horizontal logo 4.png │ │ ├── CometChat horizontal logo 4@2x 1.png │ │ ├── CometChat horizontal logo 4@2x.png │ │ ├── CometChat horizontal logo 4@3x 1.png │ │ ├── CometChat horizontal logo 4@3x.png │ │ ├── CometChat horizontal logo 5.png │ │ └── Contents.json │ ├── cometchat-logo.imageset │ │ ├── Cometchat 1.png │ │ ├── Cometchat 2.png │ │ ├── Cometchat.png │ │ └── Contents.json │ ├── cometchat_white.imageset │ │ ├── Contents.json │ │ ├── cometchat_white-1.png │ │ ├── cometchat_white.png │ │ ├── cometchat_white@2x-1.png │ │ ├── cometchat_white@2x.png │ │ ├── cometchat_white@3x-1.png │ │ └── cometchat_white@3x.png │ ├── eu-flag.imageset │ │ ├── Contents.json │ │ ├── image 59.png │ │ ├── image 59@2x.png │ │ └── image 59@3x.png │ ├── groups-create.imageset │ │ ├── Base_Icon.png │ │ ├── Base_Icon@2x.png │ │ ├── Base_Icon@3x.png │ │ └── Contents.json │ ├── missed_call_image.imageset │ │ ├── Base_Icon.png │ │ ├── Base_Icon@2x.png │ │ ├── Base_Icon@3x.png │ │ └── Contents.json │ └── us-flag.imageset │ │ ├── Contents.json │ │ ├── US - United States.png │ │ ├── US - United States@2x.png │ │ └── US - United States@3x.png ├── Base.lproj │ └── LaunchScreen.storyboard ├── Helper │ ├── CustomTextFiled.swift │ └── Extentions.swift ├── Info.plist ├── README.md ├── SceneDelegate.swift ├── View Controllers │ ├── .DS_Store │ ├── CometChat Components │ │ ├── Add Members │ │ │ ├── AddMembersVC.swift │ │ │ └── AddMembersViewModel.swift │ │ ├── Banned Members │ │ │ ├── BannedMembersVC.swift │ │ │ └── BannedMembersViewModel.swift │ │ ├── Call Log Details │ │ │ ├── Call History │ │ │ │ ├── CallHistoyTVC.swift │ │ │ │ └── CallLogHistoryVC.swift │ │ │ ├── Call Participants │ │ │ │ └── CallLogParticipantsVC.swift │ │ │ ├── Call Recording │ │ │ │ ├── CallLogRecordingsVC.swift │ │ │ │ └── CallRecordingTVC.swift │ │ │ └── CallLogDetailsVC.swift │ │ ├── CreateConversations.swift │ │ ├── DetailsPage │ │ │ ├── GroupDetailsViewController.swift │ │ │ └── UserDetailsViewController.swift │ │ ├── Group Component │ │ │ ├── CreateGroupVC.swift │ │ │ └── JoinPasswordProtectedGroupVC.swift │ │ ├── MessagesVC.swift │ │ ├── ThreadedMessagesVC.swift │ │ └── Transfer ownership │ │ │ └── TransferOwnership.swift │ ├── HomeScreenViewController.swift │ └── LoginVC │ │ ├── ChangeAppCredentialsVC.swift │ │ ├── LoginWithUidVC.swift │ │ └── SampleUserCVCell.swift ├── changelog.md └── master-app.entitlements ├── SampleAppPushNotificationAPNs ├── .DS_Store ├── AppConstants.swift ├── AppDelegate.swift ├── Assets.xcassets │ ├── .DS_Store │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ ├── 100.png │ │ ├── 102.png │ │ ├── 1024.png │ │ ├── 108.png │ │ ├── 114.png │ │ ├── 120 1.png │ │ ├── 120.png │ │ ├── 128.png │ │ ├── 144.png │ │ ├── 152.png │ │ ├── 16.png │ │ ├── 167.png │ │ ├── 172.png │ │ ├── 180.png │ │ ├── 196.png │ │ ├── 20.png │ │ ├── 216.png │ │ ├── 234.png │ │ ├── 256.png │ │ ├── 258.png │ │ ├── 29 1.png │ │ ├── 29.png │ │ ├── 32.png │ │ ├── 40 1.png │ │ ├── 40 2.png │ │ ├── 40.png │ │ ├── 48.png │ │ ├── 50.png │ │ ├── 512.png │ │ ├── 55.png │ │ ├── 57.png │ │ ├── 58 1.png │ │ ├── 58.png │ │ ├── 60.png │ │ ├── 64.png │ │ ├── 66.png │ │ ├── 72.png │ │ ├── 76.png │ │ ├── 80 1.png │ │ ├── 80.png │ │ ├── 87.png │ │ ├── 88.png │ │ ├── 92.png │ │ ├── Contents.json │ │ ├── Icon-App-20x20@1x.png │ │ ├── Icon-App-20x20@2x.png │ │ ├── Icon-App-20x20@3x.png │ │ ├── Icon-App-29x29@1x.png │ │ ├── Icon-App-29x29@2x.png │ │ ├── Icon-App-29x29@3x.png │ │ ├── Icon-App-40x40@1x.png │ │ ├── Icon-App-40x40@2x.png │ │ ├── Icon-App-40x40@3x.png │ │ ├── Icon-App-60x60@2x.png │ │ ├── Icon-App-60x60@3x.png │ │ ├── Icon-App-76x76@1x.png │ │ ├── Icon-App-76x76@2x.png │ │ ├── Icon-App-83.5x83.5@2x.png │ │ ├── appstore.png │ │ └── iTunesArtwork@2x-1.png │ ├── CometChat horizontal logo 4.imageset │ │ └── Contents.json │ ├── Contents.json │ ├── India-flag.imageset │ │ ├── Contents.json │ │ ├── IN - India.png │ │ ├── IN - India@2x.png │ │ └── IN - India@3x.png │ ├── ban_member.imageset │ │ ├── Base_iOS Icons.png │ │ ├── Base_iOS Icons@2x.png │ │ ├── Base_iOS Icons@3x.png │ │ └── Contents.json │ ├── ban_members.imageset │ │ ├── Contents.json │ │ ├── iOS Icons.png │ │ ├── iOS Icons@2x.png │ │ └── iOS Icons@3x.png │ ├── block_image.imageset │ │ ├── Contents.json │ │ ├── iOS Icons.png │ │ ├── iOS Icons@2x.png │ │ └── iOS Icons@3x.png │ ├── cometchat-logo-with-name.imageset │ │ ├── CometChat horizontal logo 4.png │ │ ├── CometChat horizontal logo 4@2x 1.png │ │ ├── CometChat horizontal logo 4@2x.png │ │ ├── CometChat horizontal logo 4@3x 1.png │ │ ├── CometChat horizontal logo 4@3x.png │ │ ├── CometChat horizontal logo 5.png │ │ └── Contents.json │ ├── cometchat-logo.imageset │ │ ├── Cometchat 1.png │ │ ├── Cometchat 2.png │ │ ├── Cometchat.png │ │ └── Contents.json │ ├── cometchat_white.imageset │ │ ├── Contents.json │ │ ├── cometchat_white-1.png │ │ ├── cometchat_white.png │ │ ├── cometchat_white@2x-1.png │ │ ├── cometchat_white@2x.png │ │ ├── cometchat_white@3x-1.png │ │ └── cometchat_white@3x.png │ ├── eu-flag.imageset │ │ ├── Contents.json │ │ ├── image 59.png │ │ ├── image 59@2x.png │ │ └── image 59@3x.png │ ├── groups-create.imageset │ │ ├── Base_Icon.png │ │ ├── Base_Icon@2x.png │ │ ├── Base_Icon@3x.png │ │ └── Contents.json │ ├── missed_call_image.imageset │ │ ├── Base_Icon.png │ │ ├── Base_Icon@2x.png │ │ ├── Base_Icon@3x.png │ │ └── Contents.json │ └── us-flag.imageset │ │ ├── Contents.json │ │ ├── US - United States.png │ │ ├── US - United States@2x.png │ │ └── US - United States@3x.png ├── Base.lproj │ └── LaunchScreen.storyboard ├── Helper │ ├── CustomTextFiled.swift │ └── Extentions.swift ├── Info.plist ├── Push Notification + VoIP │ ├── AppDelegate + PN.swift │ ├── AppDelegate + VoIP.swift │ ├── CometChatAPNsHelper.swift │ └── CometChatPNHelper.swift ├── README.md ├── SampleAppPushNotificationAPNs.entitlements ├── SceneDelegate.swift ├── View Controllers │ ├── .DS_Store │ ├── CometChat Components │ │ ├── Add Members │ │ │ ├── AddMembersVC.swift │ │ │ └── AddMembersViewModel.swift │ │ ├── Banned Members │ │ │ ├── BannedMembersVC.swift │ │ │ └── BannedMembersViewModel.swift │ │ ├── Call Log Details │ │ │ ├── Call History │ │ │ │ ├── CallHistoyTVC.swift │ │ │ │ └── CallLogHistoryVC.swift │ │ │ ├── Call Participants │ │ │ │ └── CallLogParticipantsVC.swift │ │ │ ├── Call Recording │ │ │ │ ├── CallLogRecordingsVC.swift │ │ │ │ └── CallRecordingTVC.swift │ │ │ └── CallLogDetailsVC.swift │ │ ├── CreateConversations.swift │ │ ├── DetailsPage │ │ │ ├── GroupDetailsViewController.swift │ │ │ └── UserDetailsViewController.swift │ │ ├── Group Component │ │ │ ├── CreateGroupVC.swift │ │ │ └── JoinPasswordProtectedGroupVC.swift │ │ ├── MessagesVC.swift │ │ ├── ThreadedMessagesVC.swift │ │ └── Transfer ownership │ │ │ └── TransferOwnership.swift │ ├── HomeScreenViewController.swift │ └── LoginVC │ │ ├── ChangeAppCredentialsVC.swift │ │ ├── LoginWithUidVC.swift │ │ └── SampleUserCVCell.swift └── changelog.md └── screenshots └── overview_cometchat_screen.png /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/.DS_Store -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj merge=union -------------------------------------------------------------------------------- /CometChatUIKitSwift/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/.DS_Store -------------------------------------------------------------------------------- /CometChatUIKitSwift/CometChatUIKitSwift.m: -------------------------------------------------------------------------------- 1 | // 2 | // CometChatUIKitSwift.m 3 | // CometChatUIKitSwift 4 | // 5 | // Created by Admin on 08/09/23. 6 | // 7 | 8 | #import 9 | #import "CometChatUIKitSwift.h" 10 | 11 | 12 | 13 | @implementation CometChatUIKitSwiftCalls 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/.DS_Store -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/AI/AI Smart Replies/CometChatAIConversationSummaryShimmer.swift: -------------------------------------------------------------------------------- 1 | // 2 | // CometChatAIConversationSummaryShimmer.swift 3 | // CometChatUIKitSwift 4 | // 5 | // Created by Dawinder on 08/11/24. 6 | // 7 | 8 | import Foundation 9 | -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Calls/Resources/calls-assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Calls/Resources/calls-assets.xcassets/VideoCall.imageset/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Calls/Resources/calls-assets.xcassets/VideoCall.imageset/Icon.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Calls/Resources/calls-assets.xcassets/VideoCall.imageset/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Calls/Resources/calls-assets.xcassets/VideoCall.imageset/Icon@2x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Calls/Resources/calls-assets.xcassets/VideoCall.imageset/Icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Calls/Resources/calls-assets.xcassets/VideoCall.imageset/Icon@3x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Calls/Resources/calls-assets.xcassets/VoiceCall.imageset/Voice Call.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Calls/Resources/calls-assets.xcassets/VoiceCall.imageset/Voice Call.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Calls/Resources/calls-assets.xcassets/VoiceCall.imageset/Voice Call@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Calls/Resources/calls-assets.xcassets/VoiceCall.imageset/Voice Call@2x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Calls/Resources/calls-assets.xcassets/call-new.imageset/Call New.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Calls/Resources/calls-assets.xcassets/call-new.imageset/Call New.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Calls/Resources/calls-assets.xcassets/call-new.imageset/Call New@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Calls/Resources/calls-assets.xcassets/call-new.imageset/Call New@2x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Calls/Resources/calls-assets.xcassets/calls-info.imageset/messages-info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Calls/Resources/calls-assets.xcassets/calls-info.imageset/messages-info.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Calls/Resources/calls-assets.xcassets/calls-info.imageset/messages-info@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Calls/Resources/calls-assets.xcassets/calls-info.imageset/messages-info@2x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Calls/Resources/calls-assets.xcassets/calls-info.imageset/messages-info@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Calls/Resources/calls-assets.xcassets/calls-info.imageset/messages-info@3x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Calls/Resources/calls-assets.xcassets/calls.imageset/Calls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Calls/Resources/calls-assets.xcassets/calls.imageset/Calls.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Calls/Resources/calls-assets.xcassets/calls.imageset/Calls@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Calls/Resources/calls-assets.xcassets/calls.imageset/Calls@2x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Calls/Resources/calls-assets.xcassets/incoming-audio-call.imageset/Yes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Calls/Resources/calls-assets.xcassets/incoming-audio-call.imageset/Yes.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Calls/Resources/calls-assets.xcassets/incoming-audio-call.imageset/Yes@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Calls/Resources/calls-assets.xcassets/incoming-audio-call.imageset/Yes@2x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Calls/Resources/calls-assets.xcassets/incoming-audio-call.imageset/Yes@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Calls/Resources/calls-assets.xcassets/incoming-audio-call.imageset/Yes@3x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Calls/Resources/calls-assets.xcassets/incoming-video-call.imageset/Yes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Calls/Resources/calls-assets.xcassets/incoming-video-call.imageset/Yes.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Calls/Resources/calls-assets.xcassets/incoming-video-call.imageset/Yes@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Calls/Resources/calls-assets.xcassets/incoming-video-call.imageset/Yes@2x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Calls/Resources/calls-assets.xcassets/incoming-video-call.imageset/Yes@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Calls/Resources/calls-assets.xcassets/incoming-video-call.imageset/Yes@3x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Calls/Resources/calls-assets.xcassets/mic-off.imageset/Mic Off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Calls/Resources/calls-assets.xcassets/mic-off.imageset/Mic Off.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Calls/Resources/calls-assets.xcassets/mic-off.imageset/Mic Off@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Calls/Resources/calls-assets.xcassets/mic-off.imageset/Mic Off@2x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Calls/Resources/calls-assets.xcassets/mic.imageset/Mic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Calls/Resources/calls-assets.xcassets/mic.imageset/Mic.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Calls/Resources/calls-assets.xcassets/mic.imageset/Mic@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Calls/Resources/calls-assets.xcassets/mic.imageset/Mic@2x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Calls/Resources/calls-assets.xcassets/missed-audio-call.imageset/Icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Calls/Resources/calls-assets.xcassets/missed-audio-call.imageset/Icon-40.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Calls/Resources/calls-assets.xcassets/missed-audio-call.imageset/Icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Calls/Resources/calls-assets.xcassets/missed-audio-call.imageset/Icon-40@2x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Calls/Resources/calls-assets.xcassets/missed-audio-call.imageset/Icon-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Calls/Resources/calls-assets.xcassets/missed-audio-call.imageset/Icon-40@3x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Calls/Resources/calls-assets.xcassets/missed-video-call.imageset/Icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Calls/Resources/calls-assets.xcassets/missed-video-call.imageset/Icon-40.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Calls/Resources/calls-assets.xcassets/missed-video-call.imageset/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Calls/Resources/calls-assets.xcassets/missed-video-call.imageset/Icon-60@2x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Calls/Resources/calls-assets.xcassets/missed-video-call.imageset/Icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Calls/Resources/calls-assets.xcassets/missed-video-call.imageset/Icon-60@3x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Calls/Resources/calls-assets.xcassets/outgoing-audio-call.imageset/Yes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Calls/Resources/calls-assets.xcassets/outgoing-audio-call.imageset/Yes.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Calls/Resources/calls-assets.xcassets/outgoing-audio-call.imageset/Yes@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Calls/Resources/calls-assets.xcassets/outgoing-audio-call.imageset/Yes@2x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Calls/Resources/calls-assets.xcassets/outgoing-audio-call.imageset/Yes@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Calls/Resources/calls-assets.xcassets/outgoing-audio-call.imageset/Yes@3x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Calls/Resources/calls-assets.xcassets/outgoing-video-call.imageset/Yes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Calls/Resources/calls-assets.xcassets/outgoing-video-call.imageset/Yes.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Calls/Resources/calls-assets.xcassets/outgoing-video-call.imageset/Yes@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Calls/Resources/calls-assets.xcassets/outgoing-video-call.imageset/Yes@2x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Calls/Resources/calls-assets.xcassets/outgoing-video-call.imageset/Yes@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Calls/Resources/calls-assets.xcassets/outgoing-video-call.imageset/Yes@3x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Calls/Resources/calls-assets.xcassets/video-call.imageset/Icon 3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Calls/Resources/calls-assets.xcassets/video-call.imageset/Icon 3.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Calls/Resources/calls-assets.xcassets/video-call.imageset/Icon 3@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Calls/Resources/calls-assets.xcassets/video-call.imageset/Icon 3@2x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Calls/Resources/calls-assets.xcassets/video-call.imageset/Icon 3@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Calls/Resources/calls-assets.xcassets/video-call.imageset/Icon 3@3x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Calls/Resources/calls-assets.xcassets/voice-call.imageset/Icon 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Calls/Resources/calls-assets.xcassets/voice-call.imageset/Icon 2.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Calls/Resources/calls-assets.xcassets/voice-call.imageset/Icon 2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Calls/Resources/calls-assets.xcassets/voice-call.imageset/Icon 2@2x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Calls/Resources/calls-assets.xcassets/voice-call.imageset/Icon 2@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Calls/Resources/calls-assets.xcassets/voice-call.imageset/Icon 2@3x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/audio-waveform.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/audio-waveform.gif -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/chats-assets.xcassets/Chats.imageset/Chats.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/chats-assets.xcassets/Chats.imageset/Chats.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/chats-assets.xcassets/Chats.imageset/Chats@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/chats-assets.xcassets/Chats.imageset/Chats@2x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/chats-assets.xcassets/Chats.imageset/Chats@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/chats-assets.xcassets/Chats.imageset/Chats@3x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/chats-assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/chats-assets.xcassets/chats-create.imageset/chats-create.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/chats-assets.xcassets/chats-create.imageset/chats-create.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/chats-assets.xcassets/chats-create.imageset/chats-create@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/chats-assets.xcassets/chats-create.imageset/chats-create@2x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/chats-assets.xcassets/chats-create.imageset/chats-create@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/chats-assets.xcassets/chats-create.imageset/chats-create@3x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/chats-assets.xcassets/chats-delete.imageset/chats-delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/chats-assets.xcassets/chats-delete.imageset/chats-delete.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/chats-assets.xcassets/chats-delete.imageset/chats-delete@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/chats-assets.xcassets/chats-delete.imageset/chats-delete@2x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/chats-assets.xcassets/chats-delete.imageset/chats-delete@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/chats-assets.xcassets/chats-delete.imageset/chats-delete@3x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/chats-assets.xcassets/chats-lock.imageset/chats-lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/chats-assets.xcassets/chats-lock.imageset/chats-lock.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/chats-assets.xcassets/chats-lock.imageset/chats-lock@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/chats-assets.xcassets/chats-lock.imageset/chats-lock@2x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/chats-assets.xcassets/chats-lock.imageset/chats-lock@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/chats-assets.xcassets/chats-lock.imageset/chats-lock@3x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/chats-assets.xcassets/chats-message-read.imageset/chats-message-read.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/chats-assets.xcassets/chats-message-read.imageset/chats-message-read.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/chats-assets.xcassets/chats-message-read.imageset/chats-message-read@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/chats-assets.xcassets/chats-message-read.imageset/chats-message-read@2x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/chats-assets.xcassets/chats-message-read.imageset/chats-message-read@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/chats-assets.xcassets/chats-message-read.imageset/chats-message-read@3x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/chats-assets.xcassets/chats-message-sent.imageset/chats-message-sent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/chats-assets.xcassets/chats-message-sent.imageset/chats-message-sent.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/chats-assets.xcassets/chats-message-sent.imageset/chats-message-sent@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/chats-assets.xcassets/chats-message-sent.imageset/chats-message-sent@2x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/chats-assets.xcassets/chats-message-sent.imageset/chats-message-sent@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/chats-assets.xcassets/chats-message-sent.imageset/chats-message-sent@3x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/chats-assets.xcassets/chats-shield.imageset/chats-shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/chats-assets.xcassets/chats-shield.imageset/chats-shield.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/chats-assets.xcassets/chats-shield.imageset/chats-shield@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/chats-assets.xcassets/chats-shield.imageset/chats-shield@2x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/chats-assets.xcassets/chats-shield.imageset/chats-shield@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/chats-assets.xcassets/chats-shield.imageset/chats-shield@3x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/groups-assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/groups-assets.xcassets/groups-ban.imageset/groups-ban.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/groups-assets.xcassets/groups-ban.imageset/groups-ban.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/groups-assets.xcassets/groups-ban.imageset/groups-ban@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/groups-assets.xcassets/groups-ban.imageset/groups-ban@2x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/groups-assets.xcassets/groups-ban.imageset/groups-ban@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/groups-assets.xcassets/groups-ban.imageset/groups-ban@3x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/groups-assets.xcassets/groups-create.imageset/Base_Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/groups-assets.xcassets/groups-create.imageset/Base_Icon.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/groups-assets.xcassets/groups-create.imageset/Base_Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/groups-assets.xcassets/groups-create.imageset/Base_Icon@2x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/groups-assets.xcassets/groups-create.imageset/Base_Icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/groups-assets.xcassets/groups-create.imageset/Base_Icon@3x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/groups-assets.xcassets/groups-kick.imageset/groups-kick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/groups-assets.xcassets/groups-kick.imageset/groups-kick.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/groups-assets.xcassets/groups-kick.imageset/groups-kick@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/groups-assets.xcassets/groups-kick.imageset/groups-kick@2x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/groups-assets.xcassets/groups-kick.imageset/groups-kick@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/groups-assets.xcassets/groups-kick.imageset/groups-kick@3x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/groups-assets.xcassets/groups-lock.imageset/Base_Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/groups-assets.xcassets/groups-lock.imageset/Base_Icon.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/groups-assets.xcassets/groups-lock.imageset/Base_Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/groups-assets.xcassets/groups-lock.imageset/Base_Icon@2x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/groups-assets.xcassets/groups-lock.imageset/Base_Icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/groups-assets.xcassets/groups-lock.imageset/Base_Icon@3x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/groups-assets.xcassets/groups-shield.imageset/Base_Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/groups-assets.xcassets/groups-shield.imageset/Base_Icon.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/groups-assets.xcassets/groups-shield.imageset/Base_Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/groups-assets.xcassets/groups-shield.imageset/Base_Icon@2x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/groups-assets.xcassets/groups-shield.imageset/Base_Icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/groups-assets.xcassets/groups-shield.imageset/Base_Icon@3x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/groups-assets.xcassets/groups.imageset/Groups.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/groups-assets.xcassets/groups.imageset/Groups.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/groups-assets.xcassets/groups.imageset/Groups@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/groups-assets.xcassets/groups.imageset/Groups@2x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/groups-assets.xcassets/groups.imageset/Groups@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/groups-assets.xcassets/groups.imageset/Groups@3x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/groups-assets.xcassets/new-group-icon.imageset/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/groups-assets.xcassets/new-group-icon.imageset/Icon.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/groups-assets.xcassets/new-group-icon.imageset/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/groups-assets.xcassets/new-group-icon.imageset/Icon@2x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/groups-assets.xcassets/new-group-icon.imageset/Icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/groups-assets.xcassets/new-group-icon.imageset/Icon@3x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/actionsheet-grid.imageset/actionsheet-grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/actionsheet-grid.imageset/actionsheet-grid.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/actionsheet-grid.imageset/actionsheet-grid@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/actionsheet-grid.imageset/actionsheet-grid@2x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/actionsheet-grid.imageset/actionsheet-grid@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/actionsheet-grid.imageset/actionsheet-grid@3x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/actionsheet-list.imageset/actionsheet-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/actionsheet-list.imageset/actionsheet-list.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/actionsheet-list.imageset/actionsheet-list@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/actionsheet-list.imageset/actionsheet-list@2x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/actionsheet-list.imageset/actionsheet-list@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/actionsheet-list.imageset/actionsheet-list@3x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/add-circle-filled.imageset/add-circle-filled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/add-circle-filled.imageset/add-circle-filled.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/add-circle-filled.imageset/add-circle-filled@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/add-circle-filled.imageset/add-circle-filled@2x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/add-circle-filled.imageset/add-circle-filled@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/add-circle-filled.imageset/add-circle-filled@3x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/add_reaction.imageset/iOS Icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/add_reaction.imageset/iOS Icons.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/add_reaction.imageset/iOS Icons@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/add_reaction.imageset/iOS Icons@2x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/add_reaction.imageset/iOS Icons@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/add_reaction.imageset/iOS Icons@3x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/ai-image.imageset/iOS Icons@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/ai-image.imageset/iOS Icons@1x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/ai-image.imageset/iOS Icons@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/ai-image.imageset/iOS Icons@2x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/ai-image.imageset/iOS Icons@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/ai-image.imageset/iOS Icons@3x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/ai_conversation_summary.imageset/Base_iOS Icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/ai_conversation_summary.imageset/Base_iOS Icons.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/ai_suggest_reply.imageset/Base_iOS Icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/ai_suggest_reply.imageset/Base_iOS Icons.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/ai_suggest_reply.imageset/Base_iOS Icons@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/ai_suggest_reply.imageset/Base_iOS Icons@2x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/ai_suggest_reply.imageset/Base_iOS Icons@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/ai_suggest_reply.imageset/Base_iOS Icons@3x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/arrow-forward-1.imageset/arrow-forward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/arrow-forward-1.imageset/arrow-forward.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/arrow-forward-1.imageset/arrow-forward@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/arrow-forward-1.imageset/arrow-forward@2x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/arrow-forward-1.imageset/arrow-forward@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/arrow-forward-1.imageset/arrow-forward@3x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/audio-message-download.imageset/Vector@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/audio-message-download.imageset/Vector@1x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/audio-message-download.imageset/Vector@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/audio-message-download.imageset/Vector@2x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/audio-message-download.imageset/Vector@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/audio-message-download.imageset/Vector@3x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/calendar.imageset/Frame@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/calendar.imageset/Frame@1x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/calendar.imageset/Frame@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/calendar.imageset/Frame@2x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/calendar.imageset/Frame@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/calendar.imageset/Frame@3x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/collaborative-message-icon.imageset/Icon@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/collaborative-message-icon.imageset/Icon@1x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/collaborative-message-icon.imageset/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/collaborative-message-icon.imageset/Icon@2x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/collaborative-message-icon.imageset/Icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/collaborative-message-icon.imageset/Icon@3x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/copy-paste.imageset/copy-paste-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/copy-paste.imageset/copy-paste-1.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/copy-paste.imageset/copy-paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/copy-paste.imageset/copy-paste.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/copy-paste.imageset/copy-paste@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/copy-paste.imageset/copy-paste@2x-1.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/copy-paste.imageset/copy-paste@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/copy-paste.imageset/copy-paste@2x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/copy-paste.imageset/copy-paste@3x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/copy-paste.imageset/copy-paste@3x-1.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/copy-paste.imageset/copy-paste@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/copy-paste.imageset/copy-paste@3x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/custom-send.imageset/send@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/custom-send.imageset/send@1x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/custom-send.imageset/send@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/custom-send.imageset/send@2x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/custom-send.imageset/send@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/custom-send.imageset/send@3x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/de-selected-option-image.imageset/Selection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/de-selected-option-image.imageset/Selection.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/de-selected-option-image.imageset/Selection@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/de-selected-option-image.imageset/Selection@2x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/de-selected-option-image.imageset/Selection@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/de-selected-option-image.imageset/Selection@3x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/default-image.imageset/default-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/default-image.imageset/default-image.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/default-sticker-image.imageset/Image 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/default-sticker-image.imageset/Image 1.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/default-sticker-image.imageset/Image 1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/default-sticker-image.imageset/Image 1@2x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/default-sticker-image.imageset/Image 1@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/default-sticker-image.imageset/Image 1@3x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/deleted-message.imageset/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/deleted-message.imageset/Icon.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/deleted-message.imageset/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/deleted-message.imageset/Icon@2x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/deleted-message.imageset/Icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/deleted-message.imageset/Icon@3x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/download.imageset/Base_Icon@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/download.imageset/Base_Icon@1x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/download.imageset/Base_Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/download.imageset/Base_Icon@2x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/download.imageset/Base_Icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/download.imageset/Base_Icon@3x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/drag-options-icon.imageset/Base_Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/drag-options-icon.imageset/Base_Icon.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/drag-options-icon.imageset/Base_Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/drag-options-icon.imageset/Base_Icon@2x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/drag-options-icon.imageset/Base_Icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/drag-options-icon.imageset/Base_Icon@3x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/empty-icon.imageset/Empty Illustration@1x 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/empty-icon.imageset/Empty Illustration@1x 1.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/empty-icon.imageset/Empty Illustration@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/empty-icon.imageset/Empty Illustration@1x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/empty-icon.imageset/Empty Illustration@2x 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/empty-icon.imageset/Empty Illustration@2x 1.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/empty-icon.imageset/Empty Illustration@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/empty-icon.imageset/Empty Illustration@2x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/empty-icon.imageset/Empty Illustration@3x 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/empty-icon.imageset/Empty Illustration@3x 1.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/empty-icon.imageset/Empty Illustration@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/empty-icon.imageset/Empty Illustration@3x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/error-clock.imageset/Icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/error-clock.imageset/Icon-40.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/error-clock.imageset/Icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/error-clock.imageset/Icon-40@2x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/error-clock.imageset/Icon-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/error-clock.imageset/Icon-40@3x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/error-icon.imageset/Frame 96@1x 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/error-icon.imageset/Frame 96@1x 1.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/error-icon.imageset/Frame 96@2x 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/error-icon.imageset/Frame 96@2x 1.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/error-icon.imageset/Frame 96@3x 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/error-icon.imageset/Frame 96@3x 1.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/error-icon.imageset/noComment@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/error-icon.imageset/noComment@1x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/error-icon.imageset/noComment@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/error-icon.imageset/noComment@2x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/error-icon.imageset/noComment@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/error-icon.imageset/noComment@3x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/initiated_video_call.imageset/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/initiated_video_call.imageset/Icon.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/initiated_video_call.imageset/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/initiated_video_call.imageset/Icon@2x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/initiated_video_call.imageset/Icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/initiated_video_call.imageset/Icon@3x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/initiated_voice_call.imageset/Base_Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/initiated_voice_call.imageset/Base_Icon.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/initiated_voice_call.imageset/Base_Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/initiated_voice_call.imageset/Base_Icon@2x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/initiated_voice_call.imageset/Base_Icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/initiated_voice_call.imageset/Base_Icon@3x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/message-composer-audio-file.imageset/audio@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/message-composer-audio-file.imageset/audio@1x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/message-composer-audio-file.imageset/audio@3x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/message-composer-audio-file.imageset/audio@3x-1.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/message-composer-audio-file.imageset/audio@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/message-composer-audio-file.imageset/audio@3x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/message-deleted.imageset/Base_Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/message-deleted.imageset/Base_Icon.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/message-deleted.imageset/Base_Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/message-deleted.imageset/Base_Icon@2x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/message-deleted.imageset/Base_Icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/message-deleted.imageset/Base_Icon@3x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/message-document.imageset/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/message-document.imageset/Icon.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/message-document.imageset/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/message-document.imageset/Icon@2x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/message-document.imageset/Icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/message-document.imageset/Icon@3x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/message-translate.imageset/message-translate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/message-translate.imageset/message-translate.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/message-translate.imageset/message-translate@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/message-translate.imageset/message-translate@2x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/message-translate.imageset/message-translate@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/message-translate.imageset/message-translate@3x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/message-translate.imageset/message-translate@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/message-translate.imageset/message-translate@4x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messageIndicator-down-arrow.imageset/arrowDown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messageIndicator-down-arrow.imageset/arrowDown.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messageIndicator-down-arrow.imageset/arrowDown2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messageIndicator-down-arrow.imageset/arrowDown2x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messageIndicator-down-arrow.imageset/arrowDown3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messageIndicator-down-arrow.imageset/arrowDown3x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-attach.imageset/messages-attach.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-attach.imageset/messages-attach.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-attach.imageset/messages-attach@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-attach.imageset/messages-attach@2x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-attach.imageset/messages-attach@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-attach.imageset/messages-attach@3x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-attach@4x.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "messages-attach@4x.png", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-attach@4x.imageset/messages-attach@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-attach@4x.imageset/messages-attach@4x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-audio-call.imageset/messages-audio-call.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-audio-call.imageset/messages-audio-call.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-audio-file.imageset/Yes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-audio-file.imageset/Yes.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-audio-file.imageset/Yes@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-audio-file.imageset/Yes@2x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-audio-file.imageset/Yes@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-audio-file.imageset/Yes@3x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-camera.imageset/messages-camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-camera.imageset/messages-camera.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-camera.imageset/messages-camera@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-camera.imageset/messages-camera@2x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-camera.imageset/messages-camera@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-camera.imageset/messages-camera@3x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-delete.imageset/messages-delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-delete.imageset/messages-delete.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-delete.imageset/messages-delete@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-delete.imageset/messages-delete@2x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-delete.imageset/messages-delete@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-delete.imageset/messages-delete@3x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-delivered.imageset/State=Received.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-delivered.imageset/State=Received.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-delivered.imageset/State=Received@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-delivered.imageset/State=Received@2x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-delivered.imageset/State=Received@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-delivered.imageset/State=Received@3x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-edit.imageset/messages-edit-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-edit.imageset/messages-edit-1.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-edit.imageset/messages-edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-edit.imageset/messages-edit.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-edit.imageset/messages-edit@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-edit.imageset/messages-edit@2x-1.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-edit.imageset/messages-edit@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-edit.imageset/messages-edit@2x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-edit.imageset/messages-edit@3x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-edit.imageset/messages-edit@3x-1.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-edit.imageset/messages-edit@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-edit.imageset/messages-edit@3x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-emoji.imageset/messages-emoji.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-emoji.imageset/messages-emoji.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-emoji.imageset/messages-emoji@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-emoji.imageset/messages-emoji@2x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-emoji.imageset/messages-emoji@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-emoji.imageset/messages-emoji@3x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-end-call.imageset/messages-end-call.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-end-call.imageset/messages-end-call.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-end-call.imageset/messages-end-call@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-end-call.imageset/messages-end-call@2x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-end-call.imageset/messages-end-call@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-end-call.imageset/messages-end-call@3x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-error.imageset/Message Status@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-error.imageset/Message Status@1x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-error.imageset/Message Status@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-error.imageset/Message Status@2x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-error.imageset/Message Status@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-error.imageset/Message Status@3x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-heart.imageset/messages-heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-heart.imageset/messages-heart.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-heart.imageset/messages-heart@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-heart.imageset/messages-heart@2x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-heart.imageset/messages-heart@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-heart.imageset/messages-heart@3x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-image.imageset/messages-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-image.imageset/messages-image.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-image.imageset/messages-image@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-image.imageset/messages-image@2x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-image.imageset/messages-image@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-image.imageset/messages-image@3x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-image@4x.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "messages-image@4x.png", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-image@4x.imageset/messages-image@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-image@4x.imageset/messages-image@4x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-info.imageset.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-info.imageset.zip -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-info.imageset/messages-info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-info.imageset/messages-info.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-info.imageset/messages-info@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-info.imageset/messages-info@2x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-info.imageset/messages-info@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-info.imageset/messages-info@3x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-location.imageset/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-location.imageset/Icon.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-location.imageset/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-location.imageset/Icon@2x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-location.imageset/Icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-location.imageset/Icon@3x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-media-play.imageset/messages-media-play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-media-play.imageset/messages-media-play.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-photo.imageset/Base_Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-photo.imageset/Base_Icon.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-photo.imageset/Base_Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-photo.imageset/Base_Icon@2x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-photo.imageset/Base_Icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-photo.imageset/Base_Icon@3x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-poll.imageset/Base_Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-poll.imageset/Base_Icon.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-poll.imageset/Base_Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-poll.imageset/Base_Icon@2x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-poll.imageset/Base_Icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-poll.imageset/Base_Icon@3x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-read.imageset/State=Read.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-read.imageset/State=Read.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-read.imageset/State=Read@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-read.imageset/State=Read@2x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-read.imageset/State=Read@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-read.imageset/State=Read@3x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-sent.imageset/State=Send.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-sent.imageset/State=Send.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-sent.imageset/State=Send@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-sent.imageset/State=Send@2x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-sent.imageset/State=Send@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-sent.imageset/State=Send@3x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-share.imageset/messages-share-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-share.imageset/messages-share-1.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-share.imageset/messages-share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-share.imageset/messages-share.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-share.imageset/messages-share@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-share.imageset/messages-share@2x-1.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-share.imageset/messages-share@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-share.imageset/messages-share@2x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-share.imageset/messages-share@3x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-share.imageset/messages-share@3x-1.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-share.imageset/messages-share@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-share.imageset/messages-share@3x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-stickers.imageset/Base_Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-stickers.imageset/Base_Icon.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-stickers.imageset/Base_Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-stickers.imageset/Base_Icon@2x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-stickers.imageset/Base_Icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-stickers.imageset/Base_Icon@3x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-thread.imageset/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-thread.imageset/Icon.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-thread.imageset/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-thread.imageset/Icon@2x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-thread.imageset/Icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-thread.imageset/Icon@3x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-video-call.imageset/messages-video-call.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-video-call.imageset/messages-video-call.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-wait.imageset/State=Sending.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-wait.imageset/State=Sending.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-wait.imageset/State=Sending@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-wait.imageset/State=Sending@2x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-wait.imageset/State=Sending@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/messages-wait.imageset/State=Sending@3x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/microphone-circle.imageset/microphone-circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/microphone-circle.imageset/microphone-circle.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/microphone-circle.imageset/microphone-circle@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/microphone-circle.imageset/microphone-circle@2x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/microphone-circle.imageset/microphone-circle@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/microphone-circle.imageset/microphone-circle@3x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/pdf-file.imageset/File Type@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/pdf-file.imageset/File Type@1x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/pdf-file.imageset/File Type@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/pdf-file.imageset/File Type@2x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/pdf-file.imageset/File Type@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/pdf-file.imageset/File Type@3x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/photo-library.imageset/photo-library.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/photo-library.imageset/photo-library.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/photo-library.imageset/photo-library@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/photo-library.imageset/photo-library@2x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/photo-library.imageset/photo-library@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/photo-library.imageset/photo-library@3x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/received_video_call.imageset/Base_Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/received_video_call.imageset/Base_Icon.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/received_video_call.imageset/Base_Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/received_video_call.imageset/Base_Icon@2x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/received_video_call.imageset/Base_Icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/received_video_call.imageset/Base_Icon@3x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/received_voice_call.imageset/Base_Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/received_voice_call.imageset/Base_Icon.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/received_voice_call.imageset/Base_Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/received_voice_call.imageset/Base_Icon@2x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/received_voice_call.imageset/Base_Icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/received_voice_call.imageset/Base_Icon@3x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/reply-message.imageset/reply-message.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/reply-message.imageset/reply-message.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/reply-message.imageset/reply-message@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/reply-message.imageset/reply-message@2x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/reply-message.imageset/reply-message@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/reply-message.imageset/reply-message@3x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/rightarrow.imageset/Frame@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/rightarrow.imageset/Frame@1x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/rightarrow.imageset/Frame@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/rightarrow.imageset/Frame@2x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/rightarrow.imageset/Frame@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/rightarrow.imageset/Frame@3x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/selected-option-image.imageset/Selection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/selected-option-image.imageset/Selection.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/selected-option-image.imageset/Selection@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/selected-option-image.imageset/Selection@2x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/selected-option-image.imageset/Selection@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/selected-option-image.imageset/Selection@3x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/sticker-image-filled.imageset/Icon@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/sticker-image-filled.imageset/Icon@1x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/sticker-image-filled.imageset/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/sticker-image-filled.imageset/Icon@2x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/sticker-image-filled.imageset/Icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/sticker-image-filled.imageset/Icon@3x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/sticker-image.imageset/Base_iOS Icons@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/sticker-image.imageset/Base_iOS Icons@1x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/sticker-image.imageset/Base_iOS Icons@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/sticker-image.imageset/Base_iOS Icons@2x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/sticker-image.imageset/Base_iOS Icons@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/sticker-image.imageset/Base_iOS Icons@3x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/sticker-keyboard.imageset/Keyboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/sticker-keyboard.imageset/Keyboard.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/sticker-keyboard.imageset/Keyboard@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/sticker-keyboard.imageset/Keyboard@2x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/threaded-message.imageset/threaded-message-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/threaded-message.imageset/threaded-message-1.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/threaded-message.imageset/threaded-message.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/threaded-message.imageset/threaded-message.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/threaded-message.imageset/threaded-message@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/threaded-message.imageset/threaded-message@2x-1.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/threaded-message.imageset/threaded-message@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/threaded-message.imageset/threaded-message@2x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/threaded-message.imageset/threaded-message@3x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/threaded-message.imageset/threaded-message@3x-1.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/threaded-message.imageset/threaded-message@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/threaded-message.imageset/threaded-message@3x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/time-clock.imageset/Frame@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/time-clock.imageset/Frame@1x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/time-clock.imageset/Frame@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/time-clock.imageset/Frame@2x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/time-clock.imageset/Frame@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/time-clock.imageset/Frame@3x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/time-zone-earth.imageset/Vector@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/time-zone-earth.imageset/Vector@1x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/time-zone-earth.imageset/Vector@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/time-zone-earth.imageset/Vector@2x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/time-zone-earth.imageset/Vector@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/time-zone-earth.imageset/Vector@3x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/translate-icon.imageset/Base_iOS Icons@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/translate-icon.imageset/Base_iOS Icons@1x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/translate-icon.imageset/Base_iOS Icons@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/translate-icon.imageset/Base_iOS Icons@2x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/translate-icon.imageset/Base_iOS Icons@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/translate-icon.imageset/Base_iOS Icons@3x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/video-call.imageset/video-call.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/video-call.imageset/video-call.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/video-call.imageset/video-call@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/video-call.imageset/video-call@2x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/video-call.imageset/video-call@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/video-call.imageset/video-call@3x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/voice-recording-wavefrom.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Resources/voice-recording-wavefrom.gif -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Resources/Color.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Resources/IncomingCall.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Shared/Resources/IncomingCall.wav -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Resources/IncomingMessage.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Shared/Resources/IncomingMessage.wav -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Resources/IncomingMessageFromOther.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Shared/Resources/IncomingMessageFromOther.wav -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Resources/NewAnnouncement.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Shared/Resources/NewAnnouncement.wav -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Resources/OutgoingCall.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Shared/Resources/OutgoingCall.wav -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Resources/OutgoingMessage.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Shared/Resources/OutgoingMessage.wav -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Resources/shared-assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Resources/shared-assets.xcassets/ai-auxiliary.imageset/Frame@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Shared/Resources/shared-assets.xcassets/ai-auxiliary.imageset/Frame@1x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Resources/shared-assets.xcassets/ai-auxiliary.imageset/Frame@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Shared/Resources/shared-assets.xcassets/ai-auxiliary.imageset/Frame@2x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Resources/shared-assets.xcassets/ai-auxiliary.imageset/Frame@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Shared/Resources/shared-assets.xcassets/ai-auxiliary.imageset/Frame@3x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Resources/shared-assets.xcassets/dropDown.imageset/dropDownBlack 1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Shared/Resources/shared-assets.xcassets/dropDown.imageset/dropDownBlack 1.jpg -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Resources/shared-assets.xcassets/dropDown.imageset/dropDownBlack 2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Shared/Resources/shared-assets.xcassets/dropDown.imageset/dropDownBlack 2.jpg -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Resources/shared-assets.xcassets/dropDown.imageset/dropDownBlack.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Shared/Resources/shared-assets.xcassets/dropDown.imageset/dropDownBlack.jpg -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Resources/shared-assets.xcassets/keyboard.imageset/keyboard@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Shared/Resources/shared-assets.xcassets/keyboard.imageset/keyboard@1x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Resources/shared-assets.xcassets/keyboard.imageset/keyboard@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Shared/Resources/shared-assets.xcassets/keyboard.imageset/keyboard@2x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Resources/shared-assets.xcassets/microphone.imageset/Icon-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Shared/Resources/shared-assets.xcassets/microphone.imageset/Icon-20.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Resources/shared-assets.xcassets/microphone.imageset/Icon-20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Shared/Resources/shared-assets.xcassets/microphone.imageset/Icon-20@2x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Resources/shared-assets.xcassets/microphone.imageset/mic_12614391 (3) 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Shared/Resources/shared-assets.xcassets/microphone.imageset/mic_12614391 (3) 2.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Resources/shared-assets.xcassets/polls.imageset/Name=poll, Fill=Yes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Shared/Resources/shared-assets.xcassets/polls.imageset/Name=poll, Fill=Yes.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Resources/shared-assets.xcassets/polls.imageset/Name=poll, Fill=Yes@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Shared/Resources/shared-assets.xcassets/polls.imageset/Name=poll, Fill=Yes@2x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Resources/shared-assets.xcassets/polls.imageset/Name=poll, Fill=Yes@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Shared/Resources/shared-assets.xcassets/polls.imageset/Name=poll, Fill=Yes@3x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Resources/shared-assets.xcassets/sticker.imageset/sticker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Shared/Resources/shared-assets.xcassets/sticker.imageset/sticker.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Resources/shared-assets.xcassets/sticker.imageset/sticker@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Components/Shared/Resources/shared-assets.xcassets/sticker.imageset/sticker@2x.png -------------------------------------------------------------------------------- /CometChatUIKitSwift/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /CometChatUIKitSwift/Theming/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/CometChatUIKitSwift/Theming/.DS_Store -------------------------------------------------------------------------------- /SampleApp/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleApp/.DS_Store -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleApp/Assets.xcassets/.DS_Store -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "colors" : [ 3 | { 4 | "idiom" : "universal" 5 | } 6 | ], 7 | "info" : { 8 | "author" : "xcode", 9 | "version" : 1 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/AppIcon.appiconset/100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleApp/Assets.xcassets/AppIcon.appiconset/100.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/AppIcon.appiconset/102.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleApp/Assets.xcassets/AppIcon.appiconset/102.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/AppIcon.appiconset/1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleApp/Assets.xcassets/AppIcon.appiconset/1024.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/AppIcon.appiconset/108.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleApp/Assets.xcassets/AppIcon.appiconset/108.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/AppIcon.appiconset/114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleApp/Assets.xcassets/AppIcon.appiconset/114.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/AppIcon.appiconset/120 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleApp/Assets.xcassets/AppIcon.appiconset/120 1.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/AppIcon.appiconset/120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleApp/Assets.xcassets/AppIcon.appiconset/120.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/AppIcon.appiconset/128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleApp/Assets.xcassets/AppIcon.appiconset/128.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/AppIcon.appiconset/144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleApp/Assets.xcassets/AppIcon.appiconset/144.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/AppIcon.appiconset/152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleApp/Assets.xcassets/AppIcon.appiconset/152.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/AppIcon.appiconset/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleApp/Assets.xcassets/AppIcon.appiconset/16.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/AppIcon.appiconset/167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleApp/Assets.xcassets/AppIcon.appiconset/167.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/AppIcon.appiconset/172.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleApp/Assets.xcassets/AppIcon.appiconset/172.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/AppIcon.appiconset/180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleApp/Assets.xcassets/AppIcon.appiconset/180.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/AppIcon.appiconset/196.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleApp/Assets.xcassets/AppIcon.appiconset/196.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/AppIcon.appiconset/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleApp/Assets.xcassets/AppIcon.appiconset/20.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/AppIcon.appiconset/216.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleApp/Assets.xcassets/AppIcon.appiconset/216.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/AppIcon.appiconset/234.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleApp/Assets.xcassets/AppIcon.appiconset/234.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/AppIcon.appiconset/256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleApp/Assets.xcassets/AppIcon.appiconset/256.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/AppIcon.appiconset/258.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleApp/Assets.xcassets/AppIcon.appiconset/258.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/AppIcon.appiconset/29 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleApp/Assets.xcassets/AppIcon.appiconset/29 1.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/AppIcon.appiconset/29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleApp/Assets.xcassets/AppIcon.appiconset/29.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/AppIcon.appiconset/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleApp/Assets.xcassets/AppIcon.appiconset/32.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/AppIcon.appiconset/40 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleApp/Assets.xcassets/AppIcon.appiconset/40 1.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/AppIcon.appiconset/40 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleApp/Assets.xcassets/AppIcon.appiconset/40 2.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/AppIcon.appiconset/40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleApp/Assets.xcassets/AppIcon.appiconset/40.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/AppIcon.appiconset/48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleApp/Assets.xcassets/AppIcon.appiconset/48.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/AppIcon.appiconset/50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleApp/Assets.xcassets/AppIcon.appiconset/50.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/AppIcon.appiconset/512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleApp/Assets.xcassets/AppIcon.appiconset/512.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/AppIcon.appiconset/55.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleApp/Assets.xcassets/AppIcon.appiconset/55.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/AppIcon.appiconset/57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleApp/Assets.xcassets/AppIcon.appiconset/57.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/AppIcon.appiconset/58 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleApp/Assets.xcassets/AppIcon.appiconset/58 1.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/AppIcon.appiconset/58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleApp/Assets.xcassets/AppIcon.appiconset/58.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/AppIcon.appiconset/60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleApp/Assets.xcassets/AppIcon.appiconset/60.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/AppIcon.appiconset/64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleApp/Assets.xcassets/AppIcon.appiconset/64.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/AppIcon.appiconset/66.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleApp/Assets.xcassets/AppIcon.appiconset/66.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/AppIcon.appiconset/72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleApp/Assets.xcassets/AppIcon.appiconset/72.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/AppIcon.appiconset/76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleApp/Assets.xcassets/AppIcon.appiconset/76.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/AppIcon.appiconset/80 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleApp/Assets.xcassets/AppIcon.appiconset/80 1.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/AppIcon.appiconset/80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleApp/Assets.xcassets/AppIcon.appiconset/80.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/AppIcon.appiconset/87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleApp/Assets.xcassets/AppIcon.appiconset/87.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/AppIcon.appiconset/88.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleApp/Assets.xcassets/AppIcon.appiconset/88.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/AppIcon.appiconset/92.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleApp/Assets.xcassets/AppIcon.appiconset/92.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleApp/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleApp/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleApp/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleApp/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleApp/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleApp/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleApp/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleApp/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleApp/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleApp/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleApp/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleApp/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleApp/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleApp/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/AppIcon.appiconset/appstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleApp/Assets.xcassets/AppIcon.appiconset/appstore.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/AppIcon.appiconset/iTunesArtwork@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleApp/Assets.xcassets/AppIcon.appiconset/iTunesArtwork@2x-1.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/India-flag.imageset/IN - India.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleApp/Assets.xcassets/India-flag.imageset/IN - India.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/India-flag.imageset/IN - India@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleApp/Assets.xcassets/India-flag.imageset/IN - India@2x.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/India-flag.imageset/IN - India@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleApp/Assets.xcassets/India-flag.imageset/IN - India@3x.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/ban_member.imageset/Base_iOS Icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleApp/Assets.xcassets/ban_member.imageset/Base_iOS Icons.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/ban_member.imageset/Base_iOS Icons@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleApp/Assets.xcassets/ban_member.imageset/Base_iOS Icons@2x.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/ban_member.imageset/Base_iOS Icons@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleApp/Assets.xcassets/ban_member.imageset/Base_iOS Icons@3x.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/ban_members.imageset/iOS Icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleApp/Assets.xcassets/ban_members.imageset/iOS Icons.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/ban_members.imageset/iOS Icons@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleApp/Assets.xcassets/ban_members.imageset/iOS Icons@2x.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/ban_members.imageset/iOS Icons@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleApp/Assets.xcassets/ban_members.imageset/iOS Icons@3x.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/block_image.imageset/iOS Icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleApp/Assets.xcassets/block_image.imageset/iOS Icons.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/block_image.imageset/iOS Icons@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleApp/Assets.xcassets/block_image.imageset/iOS Icons@2x.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/block_image.imageset/iOS Icons@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleApp/Assets.xcassets/block_image.imageset/iOS Icons@3x.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/cometchat-logo-with-name.imageset/CometChat horizontal logo 4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleApp/Assets.xcassets/cometchat-logo-with-name.imageset/CometChat horizontal logo 4.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/cometchat-logo-with-name.imageset/CometChat horizontal logo 4@2x 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleApp/Assets.xcassets/cometchat-logo-with-name.imageset/CometChat horizontal logo 4@2x 1.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/cometchat-logo-with-name.imageset/CometChat horizontal logo 4@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleApp/Assets.xcassets/cometchat-logo-with-name.imageset/CometChat horizontal logo 4@2x.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/cometchat-logo-with-name.imageset/CometChat horizontal logo 4@3x 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleApp/Assets.xcassets/cometchat-logo-with-name.imageset/CometChat horizontal logo 4@3x 1.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/cometchat-logo-with-name.imageset/CometChat horizontal logo 4@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleApp/Assets.xcassets/cometchat-logo-with-name.imageset/CometChat horizontal logo 4@3x.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/cometchat-logo-with-name.imageset/CometChat horizontal logo 5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleApp/Assets.xcassets/cometchat-logo-with-name.imageset/CometChat horizontal logo 5.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/cometchat-logo.imageset/Cometchat 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleApp/Assets.xcassets/cometchat-logo.imageset/Cometchat 1.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/cometchat-logo.imageset/Cometchat 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleApp/Assets.xcassets/cometchat-logo.imageset/Cometchat 2.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/cometchat-logo.imageset/Cometchat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleApp/Assets.xcassets/cometchat-logo.imageset/Cometchat.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/cometchat_white.imageset/cometchat_white-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleApp/Assets.xcassets/cometchat_white.imageset/cometchat_white-1.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/cometchat_white.imageset/cometchat_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleApp/Assets.xcassets/cometchat_white.imageset/cometchat_white.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/cometchat_white.imageset/cometchat_white@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleApp/Assets.xcassets/cometchat_white.imageset/cometchat_white@2x-1.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/cometchat_white.imageset/cometchat_white@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleApp/Assets.xcassets/cometchat_white.imageset/cometchat_white@2x.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/cometchat_white.imageset/cometchat_white@3x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleApp/Assets.xcassets/cometchat_white.imageset/cometchat_white@3x-1.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/cometchat_white.imageset/cometchat_white@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleApp/Assets.xcassets/cometchat_white.imageset/cometchat_white@3x.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/eu-flag.imageset/image 59.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleApp/Assets.xcassets/eu-flag.imageset/image 59.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/eu-flag.imageset/image 59@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleApp/Assets.xcassets/eu-flag.imageset/image 59@2x.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/eu-flag.imageset/image 59@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleApp/Assets.xcassets/eu-flag.imageset/image 59@3x.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/groups-create.imageset/Base_Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleApp/Assets.xcassets/groups-create.imageset/Base_Icon.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/groups-create.imageset/Base_Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleApp/Assets.xcassets/groups-create.imageset/Base_Icon@2x.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/groups-create.imageset/Base_Icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleApp/Assets.xcassets/groups-create.imageset/Base_Icon@3x.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/missed_call_image.imageset/Base_Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleApp/Assets.xcassets/missed_call_image.imageset/Base_Icon.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/missed_call_image.imageset/Base_Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleApp/Assets.xcassets/missed_call_image.imageset/Base_Icon@2x.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/missed_call_image.imageset/Base_Icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleApp/Assets.xcassets/missed_call_image.imageset/Base_Icon@3x.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/us-flag.imageset/US - United States.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleApp/Assets.xcassets/us-flag.imageset/US - United States.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/us-flag.imageset/US - United States@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleApp/Assets.xcassets/us-flag.imageset/US - United States@2x.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/us-flag.imageset/US - United States@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleApp/Assets.xcassets/us-flag.imageset/US - United States@3x.png -------------------------------------------------------------------------------- /SampleApp/View Controllers/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleApp/View Controllers/.DS_Store -------------------------------------------------------------------------------- /SampleApp/master-app.entitlements: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | aps-environment 6 | development 7 | 8 | 9 | -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleAppPushNotificationAPNs/.DS_Store -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleAppPushNotificationAPNs/Assets.xcassets/.DS_Store -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "colors" : [ 3 | { 4 | "idiom" : "universal" 5 | } 6 | ], 7 | "info" : { 8 | "author" : "xcode", 9 | "version" : 1 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/100.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/102.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/102.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/1024.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/108.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/108.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/114.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/120 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/120 1.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/120.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/128.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/144.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/152.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/16.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/167.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/172.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/172.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/180.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/196.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/196.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/20.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/216.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/216.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/234.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/234.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/256.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/258.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/258.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/29 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/29 1.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/29.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/32.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/40 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/40 1.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/40 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/40 2.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/40.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/48.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/50.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/512.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/55.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/55.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/57.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/58 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/58 1.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/58.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/60.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/64.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/66.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/66.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/72.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/76.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/80 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/80 1.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/80.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/87.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/88.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/88.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/92.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/92.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/appstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/appstore.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/iTunesArtwork@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/iTunesArtwork@2x-1.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/India-flag.imageset/IN - India.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleAppPushNotificationAPNs/Assets.xcassets/India-flag.imageset/IN - India.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/India-flag.imageset/IN - India@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleAppPushNotificationAPNs/Assets.xcassets/India-flag.imageset/IN - India@2x.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/India-flag.imageset/IN - India@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleAppPushNotificationAPNs/Assets.xcassets/India-flag.imageset/IN - India@3x.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/ban_member.imageset/Base_iOS Icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleAppPushNotificationAPNs/Assets.xcassets/ban_member.imageset/Base_iOS Icons.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/ban_member.imageset/Base_iOS Icons@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleAppPushNotificationAPNs/Assets.xcassets/ban_member.imageset/Base_iOS Icons@2x.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/ban_member.imageset/Base_iOS Icons@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleAppPushNotificationAPNs/Assets.xcassets/ban_member.imageset/Base_iOS Icons@3x.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/ban_members.imageset/iOS Icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleAppPushNotificationAPNs/Assets.xcassets/ban_members.imageset/iOS Icons.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/ban_members.imageset/iOS Icons@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleAppPushNotificationAPNs/Assets.xcassets/ban_members.imageset/iOS Icons@2x.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/ban_members.imageset/iOS Icons@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleAppPushNotificationAPNs/Assets.xcassets/ban_members.imageset/iOS Icons@3x.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/block_image.imageset/iOS Icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleAppPushNotificationAPNs/Assets.xcassets/block_image.imageset/iOS Icons.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/block_image.imageset/iOS Icons@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleAppPushNotificationAPNs/Assets.xcassets/block_image.imageset/iOS Icons@2x.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/block_image.imageset/iOS Icons@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleAppPushNotificationAPNs/Assets.xcassets/block_image.imageset/iOS Icons@3x.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/cometchat-logo-with-name.imageset/CometChat horizontal logo 4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleAppPushNotificationAPNs/Assets.xcassets/cometchat-logo-with-name.imageset/CometChat horizontal logo 4.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/cometchat-logo-with-name.imageset/CometChat horizontal logo 4@2x 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleAppPushNotificationAPNs/Assets.xcassets/cometchat-logo-with-name.imageset/CometChat horizontal logo 4@2x 1.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/cometchat-logo-with-name.imageset/CometChat horizontal logo 4@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleAppPushNotificationAPNs/Assets.xcassets/cometchat-logo-with-name.imageset/CometChat horizontal logo 4@2x.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/cometchat-logo-with-name.imageset/CometChat horizontal logo 4@3x 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleAppPushNotificationAPNs/Assets.xcassets/cometchat-logo-with-name.imageset/CometChat horizontal logo 4@3x 1.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/cometchat-logo-with-name.imageset/CometChat horizontal logo 4@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleAppPushNotificationAPNs/Assets.xcassets/cometchat-logo-with-name.imageset/CometChat horizontal logo 4@3x.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/cometchat-logo-with-name.imageset/CometChat horizontal logo 5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleAppPushNotificationAPNs/Assets.xcassets/cometchat-logo-with-name.imageset/CometChat horizontal logo 5.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/cometchat-logo.imageset/Cometchat 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleAppPushNotificationAPNs/Assets.xcassets/cometchat-logo.imageset/Cometchat 1.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/cometchat-logo.imageset/Cometchat 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleAppPushNotificationAPNs/Assets.xcassets/cometchat-logo.imageset/Cometchat 2.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/cometchat-logo.imageset/Cometchat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleAppPushNotificationAPNs/Assets.xcassets/cometchat-logo.imageset/Cometchat.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/cometchat_white.imageset/cometchat_white-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleAppPushNotificationAPNs/Assets.xcassets/cometchat_white.imageset/cometchat_white-1.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/cometchat_white.imageset/cometchat_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleAppPushNotificationAPNs/Assets.xcassets/cometchat_white.imageset/cometchat_white.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/cometchat_white.imageset/cometchat_white@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleAppPushNotificationAPNs/Assets.xcassets/cometchat_white.imageset/cometchat_white@2x-1.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/cometchat_white.imageset/cometchat_white@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleAppPushNotificationAPNs/Assets.xcassets/cometchat_white.imageset/cometchat_white@2x.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/cometchat_white.imageset/cometchat_white@3x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleAppPushNotificationAPNs/Assets.xcassets/cometchat_white.imageset/cometchat_white@3x-1.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/cometchat_white.imageset/cometchat_white@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleAppPushNotificationAPNs/Assets.xcassets/cometchat_white.imageset/cometchat_white@3x.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/eu-flag.imageset/image 59.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleAppPushNotificationAPNs/Assets.xcassets/eu-flag.imageset/image 59.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/eu-flag.imageset/image 59@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleAppPushNotificationAPNs/Assets.xcassets/eu-flag.imageset/image 59@2x.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/eu-flag.imageset/image 59@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleAppPushNotificationAPNs/Assets.xcassets/eu-flag.imageset/image 59@3x.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/groups-create.imageset/Base_Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleAppPushNotificationAPNs/Assets.xcassets/groups-create.imageset/Base_Icon.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/groups-create.imageset/Base_Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleAppPushNotificationAPNs/Assets.xcassets/groups-create.imageset/Base_Icon@2x.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/groups-create.imageset/Base_Icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleAppPushNotificationAPNs/Assets.xcassets/groups-create.imageset/Base_Icon@3x.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/missed_call_image.imageset/Base_Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleAppPushNotificationAPNs/Assets.xcassets/missed_call_image.imageset/Base_Icon.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/missed_call_image.imageset/Base_Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleAppPushNotificationAPNs/Assets.xcassets/missed_call_image.imageset/Base_Icon@2x.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/missed_call_image.imageset/Base_Icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleAppPushNotificationAPNs/Assets.xcassets/missed_call_image.imageset/Base_Icon@3x.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/us-flag.imageset/US - United States.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleAppPushNotificationAPNs/Assets.xcassets/us-flag.imageset/US - United States.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/us-flag.imageset/US - United States@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleAppPushNotificationAPNs/Assets.xcassets/us-flag.imageset/US - United States@2x.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/us-flag.imageset/US - United States@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleAppPushNotificationAPNs/Assets.xcassets/us-flag.imageset/US - United States@3x.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/View Controllers/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/SampleAppPushNotificationAPNs/View Controllers/.DS_Store -------------------------------------------------------------------------------- /screenshots/overview_cometchat_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/c3f89cb75106106aa6b5429e6a508136c88b0146/screenshots/overview_cometchat_screen.png --------------------------------------------------------------------------------