├── .DS_Store ├── .gitattributes ├── .gitignore ├── AISampleApp ├── AppConstants.swift ├── AppDelegate.swift ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ ├── 100.png │ │ ├── 102.png │ │ ├── 1024.png │ │ ├── 108.png │ │ ├── 114.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.png │ │ ├── 32.png │ │ ├── 40.png │ │ ├── 48.png │ │ ├── 50.png │ │ ├── 512.png │ │ ├── 55.png │ │ ├── 57.png │ │ ├── 58.png │ │ ├── 60.png │ │ ├── 64.png │ │ ├── 66.png │ │ ├── 72.png │ │ ├── 76.png │ │ ├── 80.png │ │ ├── 87.png │ │ ├── 88.png │ │ ├── 92.png │ │ └── Contents.json │ ├── 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 │ ├── missedCall.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 ├── GoogleService-Info.plist ├── Helper │ ├── CustomTextFiled.swift │ └── Extentions.swift ├── Info.plist ├── README.md ├── SceneDelegate.swift └── View Controllers │ ├── 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 │ └── SplitScreenViewController.swift ├── CometChatUIKitSwift.xcodeproj ├── project.pbxproj └── xcshareddata │ └── xcschemes │ ├── AISampleApp.xcscheme │ ├── 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 │ │ │ └── CometChatAISmartRepliesShimmer.swift │ │ ├── AI Summarizer │ │ │ ├── AIConversationSummaryConfiguration.swift │ │ │ ├── AIConversationSummaryDecorator.swift │ │ │ ├── AIConversationSummaryExtension.swift │ │ │ ├── AIConversationSummaryStyle.swift │ │ │ ├── CometChatAIConversationSummary.swift │ │ │ └── CometChatAIConversationSummaryShimmer.swift │ │ ├── AIAssistanceChatHistoryShimmerView.swift │ │ ├── AIAssistanceChatHistoryViewModel.swift │ │ ├── AIAssistantChatHistoryCell.swift │ │ ├── CometChatAIAssistanceChatHistory + Properties.swift │ │ ├── CometChatAIAssistanceChatHistory.swift │ │ ├── CometChatAIAssistantBubble.swift │ │ ├── CometChatAIAssistantBubbleStyle.swift │ │ ├── CometChatAiAssistantChatHistoryStyle.swift │ │ ├── CometChatStreamBubble.swift │ │ ├── MarkdownParserBubble.swift │ │ ├── MarkdownSources │ │ │ ├── AppKit │ │ │ │ ├── Elements │ │ │ │ │ ├── Code │ │ │ │ │ │ └── MarkdownCode+AppKit.swift │ │ │ │ │ ├── Header │ │ │ │ │ │ └── MarkdownHeader+AppKit.swift │ │ │ │ │ └── Link │ │ │ │ │ │ └── MarkdownLink+AppKit.swift │ │ │ │ ├── Extensions │ │ │ │ │ └── MarkdownFont+Traits.swift │ │ │ │ └── MarkdownParser+AppKit.swift │ │ │ ├── Common │ │ │ │ ├── Elements │ │ │ │ │ ├── Bold │ │ │ │ │ │ └── MarkdownBold.swift │ │ │ │ │ ├── Code │ │ │ │ │ │ └── MarkdownCode.swift │ │ │ │ │ ├── Escaping │ │ │ │ │ │ ├── MarkdownCodeEscaping.swift │ │ │ │ │ │ ├── MarkdownEscaping.swift │ │ │ │ │ │ └── MarkdownUnescaping.swift │ │ │ │ │ ├── Header │ │ │ │ │ │ └── MarkdownHeader.swift │ │ │ │ │ ├── Italic │ │ │ │ │ │ └── MarkdownItalic.swift │ │ │ │ │ ├── Link │ │ │ │ │ │ ├── MarkdownAutomaticLink.swift │ │ │ │ │ │ └── MarkdownLink.swift │ │ │ │ │ ├── List │ │ │ │ │ │ └── MarkdownList.swift │ │ │ │ │ ├── Quote │ │ │ │ │ │ └── MarkdownQuote.swift │ │ │ │ │ └── Strikethrough │ │ │ │ │ │ └── MarkdownStrikethrough.swift │ │ │ │ ├── Extensions │ │ │ │ │ └── String+UTF16.swift │ │ │ │ ├── MarkdownParser.swift │ │ │ │ ├── Protocols │ │ │ │ │ ├── MarkdownCommonElement.swift │ │ │ │ │ ├── MarkdownElement.swift │ │ │ │ │ ├── MarkdownLevelElement.swift │ │ │ │ │ ├── MarkdownLinkElement.swift │ │ │ │ │ └── MarkdownStyle.swift │ │ │ │ └── Typealias.swift │ │ │ └── UIKit │ │ │ │ ├── Elements │ │ │ │ ├── Code │ │ │ │ │ └── MarkdownCode+UIKit.swift │ │ │ │ ├── Header │ │ │ │ │ └── MarkdownHeader+UIKit.swift │ │ │ │ └── Link │ │ │ │ │ └── MarkdownLink+UIKit.swift │ │ │ │ ├── Extensions │ │ │ │ └── UIFont+Traits.swift │ │ │ │ └── MarkdownParser+UIKit.swift │ │ └── StreamMessage.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 │ │ ├── ModerationStyle.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 │ │ │ ├── chatHistoryIcon.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Icon Button.png │ │ │ │ ├── Icon Button@2x.png │ │ │ │ └── Icon Button@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 │ │ │ ├── copyButton.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Icon Button.png │ │ │ │ ├── Icon Button@2x.png │ │ │ │ └── Icon Button@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 │ │ │ ├── newChatIcon.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Icon Button.png │ │ │ │ ├── Icon Button@2x.png │ │ │ │ └── Icon Button@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 │ │ │ ├── DeviceTypeConstants.swift │ │ │ ├── ExtensionConstants.swift │ │ │ └── UIKitConstants.swift │ │ ├── Events │ │ │ ├── AIStreamEvents │ │ │ │ └── CometChatAIStreamService.swift │ │ │ ├── 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 │ │ │ ├── AIAssistantIntroductionView.swift │ │ │ ├── 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 ├── NotificationExtension ├── Info.plist ├── NotificationExtension.entitlements └── NotificationService.swift ├── Package.swift ├── Podfile ├── README.md ├── SampleApp ├── AppConstants.swift ├── AppDelegate.swift ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ ├── 100.png │ │ ├── 102.png │ │ ├── 1024.png │ │ ├── 108.png │ │ ├── 114.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.png │ │ ├── 32.png │ │ ├── 40.png │ │ ├── 48.png │ │ ├── 50.png │ │ ├── 512.png │ │ ├── 55.png │ │ ├── 57.png │ │ ├── 58.png │ │ ├── 60.png │ │ ├── 64.png │ │ ├── 66.png │ │ ├── 72.png │ │ ├── 76.png │ │ ├── 80.png │ │ ├── 87.png │ │ ├── 88.png │ │ ├── 92.png │ │ └── Contents.json │ ├── 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 │ ├── missedCall.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 │ └── SplitScreenViewController.swift ├── SampleAppPushNotificationAPNs ├── AppConstants.swift ├── AppDelegate.swift ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ ├── 100.png │ │ ├── 102.png │ │ ├── 1024.png │ │ ├── 108.png │ │ ├── 114.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.png │ │ ├── 32.png │ │ ├── 40.png │ │ ├── 48.png │ │ ├── 50.png │ │ ├── 512.png │ │ ├── 55.png │ │ ├── 57.png │ │ ├── 58.png │ │ ├── 60.png │ │ ├── 64.png │ │ ├── 66.png │ │ ├── 72.png │ │ ├── 76.png │ │ ├── 80.png │ │ ├── 87.png │ │ ├── 88.png │ │ ├── 92.png │ │ └── Contents.json │ ├── 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 │ ├── missedCall.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 ├── SceneDelegate.swift └── View Controllers │ ├── 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 │ └── SplitScreenViewController.swift └── screenshots ├── ai-agents-overview.png └── overview_cometchat_screen.png /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj merge=union -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/.gitignore -------------------------------------------------------------------------------- /AISampleApp/AppConstants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/AISampleApp/AppConstants.swift -------------------------------------------------------------------------------- /AISampleApp/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/AISampleApp/AppDelegate.swift -------------------------------------------------------------------------------- /AISampleApp/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/AISampleApp/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /AISampleApp/Assets.xcassets/AppIcon.appiconset/100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/AISampleApp/Assets.xcassets/AppIcon.appiconset/100.png -------------------------------------------------------------------------------- /AISampleApp/Assets.xcassets/AppIcon.appiconset/102.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/AISampleApp/Assets.xcassets/AppIcon.appiconset/102.png -------------------------------------------------------------------------------- /AISampleApp/Assets.xcassets/AppIcon.appiconset/1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/AISampleApp/Assets.xcassets/AppIcon.appiconset/1024.png -------------------------------------------------------------------------------- /AISampleApp/Assets.xcassets/AppIcon.appiconset/108.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/AISampleApp/Assets.xcassets/AppIcon.appiconset/108.png -------------------------------------------------------------------------------- /AISampleApp/Assets.xcassets/AppIcon.appiconset/114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/AISampleApp/Assets.xcassets/AppIcon.appiconset/114.png -------------------------------------------------------------------------------- /AISampleApp/Assets.xcassets/AppIcon.appiconset/120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/AISampleApp/Assets.xcassets/AppIcon.appiconset/120.png -------------------------------------------------------------------------------- /AISampleApp/Assets.xcassets/AppIcon.appiconset/128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/AISampleApp/Assets.xcassets/AppIcon.appiconset/128.png -------------------------------------------------------------------------------- /AISampleApp/Assets.xcassets/AppIcon.appiconset/144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/AISampleApp/Assets.xcassets/AppIcon.appiconset/144.png -------------------------------------------------------------------------------- /AISampleApp/Assets.xcassets/AppIcon.appiconset/152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/AISampleApp/Assets.xcassets/AppIcon.appiconset/152.png -------------------------------------------------------------------------------- /AISampleApp/Assets.xcassets/AppIcon.appiconset/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/AISampleApp/Assets.xcassets/AppIcon.appiconset/16.png -------------------------------------------------------------------------------- /AISampleApp/Assets.xcassets/AppIcon.appiconset/167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/AISampleApp/Assets.xcassets/AppIcon.appiconset/167.png -------------------------------------------------------------------------------- /AISampleApp/Assets.xcassets/AppIcon.appiconset/172.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/AISampleApp/Assets.xcassets/AppIcon.appiconset/172.png -------------------------------------------------------------------------------- /AISampleApp/Assets.xcassets/AppIcon.appiconset/180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/AISampleApp/Assets.xcassets/AppIcon.appiconset/180.png -------------------------------------------------------------------------------- /AISampleApp/Assets.xcassets/AppIcon.appiconset/196.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/AISampleApp/Assets.xcassets/AppIcon.appiconset/196.png -------------------------------------------------------------------------------- /AISampleApp/Assets.xcassets/AppIcon.appiconset/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/AISampleApp/Assets.xcassets/AppIcon.appiconset/20.png -------------------------------------------------------------------------------- /AISampleApp/Assets.xcassets/AppIcon.appiconset/216.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/AISampleApp/Assets.xcassets/AppIcon.appiconset/216.png -------------------------------------------------------------------------------- /AISampleApp/Assets.xcassets/AppIcon.appiconset/234.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/AISampleApp/Assets.xcassets/AppIcon.appiconset/234.png -------------------------------------------------------------------------------- /AISampleApp/Assets.xcassets/AppIcon.appiconset/256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/AISampleApp/Assets.xcassets/AppIcon.appiconset/256.png -------------------------------------------------------------------------------- /AISampleApp/Assets.xcassets/AppIcon.appiconset/258.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/AISampleApp/Assets.xcassets/AppIcon.appiconset/258.png -------------------------------------------------------------------------------- /AISampleApp/Assets.xcassets/AppIcon.appiconset/29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/AISampleApp/Assets.xcassets/AppIcon.appiconset/29.png -------------------------------------------------------------------------------- /AISampleApp/Assets.xcassets/AppIcon.appiconset/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/AISampleApp/Assets.xcassets/AppIcon.appiconset/32.png -------------------------------------------------------------------------------- /AISampleApp/Assets.xcassets/AppIcon.appiconset/40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/AISampleApp/Assets.xcassets/AppIcon.appiconset/40.png -------------------------------------------------------------------------------- /AISampleApp/Assets.xcassets/AppIcon.appiconset/48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/AISampleApp/Assets.xcassets/AppIcon.appiconset/48.png -------------------------------------------------------------------------------- /AISampleApp/Assets.xcassets/AppIcon.appiconset/50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/AISampleApp/Assets.xcassets/AppIcon.appiconset/50.png -------------------------------------------------------------------------------- /AISampleApp/Assets.xcassets/AppIcon.appiconset/512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/AISampleApp/Assets.xcassets/AppIcon.appiconset/512.png -------------------------------------------------------------------------------- /AISampleApp/Assets.xcassets/AppIcon.appiconset/55.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/AISampleApp/Assets.xcassets/AppIcon.appiconset/55.png -------------------------------------------------------------------------------- /AISampleApp/Assets.xcassets/AppIcon.appiconset/57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/AISampleApp/Assets.xcassets/AppIcon.appiconset/57.png -------------------------------------------------------------------------------- /AISampleApp/Assets.xcassets/AppIcon.appiconset/58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/AISampleApp/Assets.xcassets/AppIcon.appiconset/58.png -------------------------------------------------------------------------------- /AISampleApp/Assets.xcassets/AppIcon.appiconset/60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/AISampleApp/Assets.xcassets/AppIcon.appiconset/60.png -------------------------------------------------------------------------------- /AISampleApp/Assets.xcassets/AppIcon.appiconset/64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/AISampleApp/Assets.xcassets/AppIcon.appiconset/64.png -------------------------------------------------------------------------------- /AISampleApp/Assets.xcassets/AppIcon.appiconset/66.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/AISampleApp/Assets.xcassets/AppIcon.appiconset/66.png -------------------------------------------------------------------------------- /AISampleApp/Assets.xcassets/AppIcon.appiconset/72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/AISampleApp/Assets.xcassets/AppIcon.appiconset/72.png -------------------------------------------------------------------------------- /AISampleApp/Assets.xcassets/AppIcon.appiconset/76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/AISampleApp/Assets.xcassets/AppIcon.appiconset/76.png -------------------------------------------------------------------------------- /AISampleApp/Assets.xcassets/AppIcon.appiconset/80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/AISampleApp/Assets.xcassets/AppIcon.appiconset/80.png -------------------------------------------------------------------------------- /AISampleApp/Assets.xcassets/AppIcon.appiconset/87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/AISampleApp/Assets.xcassets/AppIcon.appiconset/87.png -------------------------------------------------------------------------------- /AISampleApp/Assets.xcassets/AppIcon.appiconset/88.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/AISampleApp/Assets.xcassets/AppIcon.appiconset/88.png -------------------------------------------------------------------------------- /AISampleApp/Assets.xcassets/AppIcon.appiconset/92.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/AISampleApp/Assets.xcassets/AppIcon.appiconset/92.png -------------------------------------------------------------------------------- /AISampleApp/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/AISampleApp/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /AISampleApp/Assets.xcassets/CometChat horizontal logo 4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/AISampleApp/Assets.xcassets/CometChat horizontal logo 4.imageset/Contents.json -------------------------------------------------------------------------------- /AISampleApp/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/AISampleApp/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /AISampleApp/Assets.xcassets/India-flag.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/AISampleApp/Assets.xcassets/India-flag.imageset/Contents.json -------------------------------------------------------------------------------- /AISampleApp/Assets.xcassets/India-flag.imageset/IN - India.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/AISampleApp/Assets.xcassets/India-flag.imageset/IN - India.png -------------------------------------------------------------------------------- /AISampleApp/Assets.xcassets/India-flag.imageset/IN - India@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/AISampleApp/Assets.xcassets/India-flag.imageset/IN - India@2x.png -------------------------------------------------------------------------------- /AISampleApp/Assets.xcassets/India-flag.imageset/IN - India@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/AISampleApp/Assets.xcassets/India-flag.imageset/IN - India@3x.png -------------------------------------------------------------------------------- /AISampleApp/Assets.xcassets/ban_member.imageset/Base_iOS Icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/AISampleApp/Assets.xcassets/ban_member.imageset/Base_iOS Icons.png -------------------------------------------------------------------------------- /AISampleApp/Assets.xcassets/ban_member.imageset/Base_iOS Icons@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/AISampleApp/Assets.xcassets/ban_member.imageset/Base_iOS Icons@2x.png -------------------------------------------------------------------------------- /AISampleApp/Assets.xcassets/ban_member.imageset/Base_iOS Icons@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/AISampleApp/Assets.xcassets/ban_member.imageset/Base_iOS Icons@3x.png -------------------------------------------------------------------------------- /AISampleApp/Assets.xcassets/ban_member.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/AISampleApp/Assets.xcassets/ban_member.imageset/Contents.json -------------------------------------------------------------------------------- /AISampleApp/Assets.xcassets/ban_members.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/AISampleApp/Assets.xcassets/ban_members.imageset/Contents.json -------------------------------------------------------------------------------- /AISampleApp/Assets.xcassets/ban_members.imageset/iOS Icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/AISampleApp/Assets.xcassets/ban_members.imageset/iOS Icons.png -------------------------------------------------------------------------------- /AISampleApp/Assets.xcassets/ban_members.imageset/iOS Icons@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/AISampleApp/Assets.xcassets/ban_members.imageset/iOS Icons@2x.png -------------------------------------------------------------------------------- /AISampleApp/Assets.xcassets/ban_members.imageset/iOS Icons@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/AISampleApp/Assets.xcassets/ban_members.imageset/iOS Icons@3x.png -------------------------------------------------------------------------------- /AISampleApp/Assets.xcassets/block_image.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/AISampleApp/Assets.xcassets/block_image.imageset/Contents.json -------------------------------------------------------------------------------- /AISampleApp/Assets.xcassets/block_image.imageset/iOS Icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/AISampleApp/Assets.xcassets/block_image.imageset/iOS Icons.png -------------------------------------------------------------------------------- /AISampleApp/Assets.xcassets/block_image.imageset/iOS Icons@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/AISampleApp/Assets.xcassets/block_image.imageset/iOS Icons@2x.png -------------------------------------------------------------------------------- /AISampleApp/Assets.xcassets/block_image.imageset/iOS Icons@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/AISampleApp/Assets.xcassets/block_image.imageset/iOS Icons@3x.png -------------------------------------------------------------------------------- /AISampleApp/Assets.xcassets/cometchat-logo-with-name.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/AISampleApp/Assets.xcassets/cometchat-logo-with-name.imageset/Contents.json -------------------------------------------------------------------------------- /AISampleApp/Assets.xcassets/cometchat-logo.imageset/Cometchat 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/AISampleApp/Assets.xcassets/cometchat-logo.imageset/Cometchat 1.png -------------------------------------------------------------------------------- /AISampleApp/Assets.xcassets/cometchat-logo.imageset/Cometchat 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/AISampleApp/Assets.xcassets/cometchat-logo.imageset/Cometchat 2.png -------------------------------------------------------------------------------- /AISampleApp/Assets.xcassets/cometchat-logo.imageset/Cometchat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/AISampleApp/Assets.xcassets/cometchat-logo.imageset/Cometchat.png -------------------------------------------------------------------------------- /AISampleApp/Assets.xcassets/cometchat-logo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/AISampleApp/Assets.xcassets/cometchat-logo.imageset/Contents.json -------------------------------------------------------------------------------- /AISampleApp/Assets.xcassets/cometchat_white.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/AISampleApp/Assets.xcassets/cometchat_white.imageset/Contents.json -------------------------------------------------------------------------------- /AISampleApp/Assets.xcassets/cometchat_white.imageset/cometchat_white-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/AISampleApp/Assets.xcassets/cometchat_white.imageset/cometchat_white-1.png -------------------------------------------------------------------------------- /AISampleApp/Assets.xcassets/cometchat_white.imageset/cometchat_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/AISampleApp/Assets.xcassets/cometchat_white.imageset/cometchat_white.png -------------------------------------------------------------------------------- /AISampleApp/Assets.xcassets/cometchat_white.imageset/cometchat_white@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/AISampleApp/Assets.xcassets/cometchat_white.imageset/cometchat_white@2x-1.png -------------------------------------------------------------------------------- /AISampleApp/Assets.xcassets/cometchat_white.imageset/cometchat_white@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/AISampleApp/Assets.xcassets/cometchat_white.imageset/cometchat_white@2x.png -------------------------------------------------------------------------------- /AISampleApp/Assets.xcassets/cometchat_white.imageset/cometchat_white@3x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/AISampleApp/Assets.xcassets/cometchat_white.imageset/cometchat_white@3x-1.png -------------------------------------------------------------------------------- /AISampleApp/Assets.xcassets/cometchat_white.imageset/cometchat_white@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/AISampleApp/Assets.xcassets/cometchat_white.imageset/cometchat_white@3x.png -------------------------------------------------------------------------------- /AISampleApp/Assets.xcassets/eu-flag.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/AISampleApp/Assets.xcassets/eu-flag.imageset/Contents.json -------------------------------------------------------------------------------- /AISampleApp/Assets.xcassets/eu-flag.imageset/image 59.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/AISampleApp/Assets.xcassets/eu-flag.imageset/image 59.png -------------------------------------------------------------------------------- /AISampleApp/Assets.xcassets/eu-flag.imageset/image 59@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/AISampleApp/Assets.xcassets/eu-flag.imageset/image 59@2x.png -------------------------------------------------------------------------------- /AISampleApp/Assets.xcassets/eu-flag.imageset/image 59@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/AISampleApp/Assets.xcassets/eu-flag.imageset/image 59@3x.png -------------------------------------------------------------------------------- /AISampleApp/Assets.xcassets/groups-create.imageset/Base_Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/AISampleApp/Assets.xcassets/groups-create.imageset/Base_Icon.png -------------------------------------------------------------------------------- /AISampleApp/Assets.xcassets/groups-create.imageset/Base_Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/AISampleApp/Assets.xcassets/groups-create.imageset/Base_Icon@2x.png -------------------------------------------------------------------------------- /AISampleApp/Assets.xcassets/groups-create.imageset/Base_Icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/AISampleApp/Assets.xcassets/groups-create.imageset/Base_Icon@3x.png -------------------------------------------------------------------------------- /AISampleApp/Assets.xcassets/groups-create.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/AISampleApp/Assets.xcassets/groups-create.imageset/Contents.json -------------------------------------------------------------------------------- /AISampleApp/Assets.xcassets/missedCall.imageset/Base_Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/AISampleApp/Assets.xcassets/missedCall.imageset/Base_Icon.png -------------------------------------------------------------------------------- /AISampleApp/Assets.xcassets/missedCall.imageset/Base_Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/AISampleApp/Assets.xcassets/missedCall.imageset/Base_Icon@2x.png -------------------------------------------------------------------------------- /AISampleApp/Assets.xcassets/missedCall.imageset/Base_Icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/AISampleApp/Assets.xcassets/missedCall.imageset/Base_Icon@3x.png -------------------------------------------------------------------------------- /AISampleApp/Assets.xcassets/missedCall.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/AISampleApp/Assets.xcassets/missedCall.imageset/Contents.json -------------------------------------------------------------------------------- /AISampleApp/Assets.xcassets/missed_call_image.imageset/Base_Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/AISampleApp/Assets.xcassets/missed_call_image.imageset/Base_Icon.png -------------------------------------------------------------------------------- /AISampleApp/Assets.xcassets/missed_call_image.imageset/Base_Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/AISampleApp/Assets.xcassets/missed_call_image.imageset/Base_Icon@2x.png -------------------------------------------------------------------------------- /AISampleApp/Assets.xcassets/missed_call_image.imageset/Base_Icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/AISampleApp/Assets.xcassets/missed_call_image.imageset/Base_Icon@3x.png -------------------------------------------------------------------------------- /AISampleApp/Assets.xcassets/missed_call_image.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/AISampleApp/Assets.xcassets/missed_call_image.imageset/Contents.json -------------------------------------------------------------------------------- /AISampleApp/Assets.xcassets/us-flag.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/AISampleApp/Assets.xcassets/us-flag.imageset/Contents.json -------------------------------------------------------------------------------- /AISampleApp/Assets.xcassets/us-flag.imageset/US - United States.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/AISampleApp/Assets.xcassets/us-flag.imageset/US - United States.png -------------------------------------------------------------------------------- /AISampleApp/Assets.xcassets/us-flag.imageset/US - United States@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/AISampleApp/Assets.xcassets/us-flag.imageset/US - United States@2x.png -------------------------------------------------------------------------------- /AISampleApp/Assets.xcassets/us-flag.imageset/US - United States@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/AISampleApp/Assets.xcassets/us-flag.imageset/US - United States@3x.png -------------------------------------------------------------------------------- /AISampleApp/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/AISampleApp/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /AISampleApp/GoogleService-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/AISampleApp/GoogleService-Info.plist -------------------------------------------------------------------------------- /AISampleApp/Helper/CustomTextFiled.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/AISampleApp/Helper/CustomTextFiled.swift -------------------------------------------------------------------------------- /AISampleApp/Helper/Extentions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/AISampleApp/Helper/Extentions.swift -------------------------------------------------------------------------------- /AISampleApp/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/AISampleApp/Info.plist -------------------------------------------------------------------------------- /AISampleApp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/AISampleApp/README.md -------------------------------------------------------------------------------- /AISampleApp/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/AISampleApp/SceneDelegate.swift -------------------------------------------------------------------------------- /AISampleApp/View Controllers/CometChat Components/Add Members/AddMembersVC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/AISampleApp/View Controllers/CometChat Components/Add Members/AddMembersVC.swift -------------------------------------------------------------------------------- /AISampleApp/View Controllers/CometChat Components/Banned Members/BannedMembersVC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/AISampleApp/View Controllers/CometChat Components/Banned Members/BannedMembersVC.swift -------------------------------------------------------------------------------- /AISampleApp/View Controllers/CometChat Components/CreateConversations.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/AISampleApp/View Controllers/CometChat Components/CreateConversations.swift -------------------------------------------------------------------------------- /AISampleApp/View Controllers/CometChat Components/Group Component/CreateGroupVC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/AISampleApp/View Controllers/CometChat Components/Group Component/CreateGroupVC.swift -------------------------------------------------------------------------------- /AISampleApp/View Controllers/CometChat Components/MessagesVC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/AISampleApp/View Controllers/CometChat Components/MessagesVC.swift -------------------------------------------------------------------------------- /AISampleApp/View Controllers/CometChat Components/ThreadedMessagesVC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/AISampleApp/View Controllers/CometChat Components/ThreadedMessagesVC.swift -------------------------------------------------------------------------------- /AISampleApp/View Controllers/HomeScreenViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/AISampleApp/View Controllers/HomeScreenViewController.swift -------------------------------------------------------------------------------- /AISampleApp/View Controllers/LoginVC/ChangeAppCredentialsVC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/AISampleApp/View Controllers/LoginVC/ChangeAppCredentialsVC.swift -------------------------------------------------------------------------------- /AISampleApp/View Controllers/LoginVC/LoginWithUidVC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/AISampleApp/View Controllers/LoginVC/LoginWithUidVC.swift -------------------------------------------------------------------------------- /AISampleApp/View Controllers/LoginVC/SampleUserCVCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/AISampleApp/View Controllers/LoginVC/SampleUserCVCell.swift -------------------------------------------------------------------------------- /AISampleApp/View Controllers/SplitScreenViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/AISampleApp/View Controllers/SplitScreenViewController.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /CometChatUIKitSwift.xcodeproj/xcshareddata/xcschemes/AISampleApp.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift.xcodeproj/xcshareddata/xcschemes/AISampleApp.xcscheme -------------------------------------------------------------------------------- /CometChatUIKitSwift.xcodeproj/xcshareddata/xcschemes/CometChatUIKitSwift.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift.xcodeproj/xcshareddata/xcschemes/CometChatUIKitSwift.xcscheme -------------------------------------------------------------------------------- /CometChatUIKitSwift/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/.DS_Store -------------------------------------------------------------------------------- /CometChatUIKitSwift/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/AppDelegate.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/CometChatUIKitSwift.docc/CometChatUIKitSwift.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/CometChatUIKitSwift.docc/CometChatUIKitSwift.md -------------------------------------------------------------------------------- /CometChatUIKitSwift/CometChatUIKitSwift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/CometChatUIKitSwift.h -------------------------------------------------------------------------------- /CometChatUIKitSwift/CometChatUIKitSwift.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/CometChatUIKitSwift.m -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/.DS_Store -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/AI/AI Bot/AI Message Compoer/AIMessageComposer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/AI/AI Bot/AI Message Compoer/AIMessageComposer.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/AI/AI Bot/AI Message Compoer/AIMessageComposer.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/AI/AI Bot/AI Message Compoer/AIMessageComposer.xib -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/AI/AI Bot/AIAssistBotConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/AI/AI Bot/AIAssistBotConfiguration.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/AI/AI Bot/AIAssistBotDecorator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/AI/AI Bot/AIAssistBotDecorator.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/AI/AI Bot/AIAssistBotExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/AI/AI Bot/AIAssistBotExtension.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/AI/AI Bot/AIAssistBotStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/AI/AI Bot/AIAssistBotStyle.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/AI/AI Bot/AIAssistViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/AI/AI Bot/AIAssistViewController.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/AI/AI Shared Views/AI Replies View/AIRepliesCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/AI/AI Shared Views/AI Replies View/AIRepliesCell.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/AI/AI Shared Views/AIOptionsStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/AI/AI Shared Views/AIOptionsStyle.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/AI/AI Shared Views/AIParentConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/AI/AI Shared Views/AIParentConfiguration.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/AI/AI Shared Views/AIParentStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/AI/AI Shared Views/AIParentStyle.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/AI/AI Smart Replies/AISmartRepliesConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/AI/AI Smart Replies/AISmartRepliesConfiguration.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/AI/AI Smart Replies/AISmartRepliesDecorator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/AI/AI Smart Replies/AISmartRepliesDecorator.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/AI/AI Smart Replies/AISmartRepliesExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/AI/AI Smart Replies/AISmartRepliesExtension.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/AI/AI Smart Replies/AISmartRepliesStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/AI/AI Smart Replies/AISmartRepliesStyle.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/AI/AI Summarizer/AIConversationSummaryDecorator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/AI/AI Summarizer/AIConversationSummaryDecorator.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/AI/AI Summarizer/AIConversationSummaryExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/AI/AI Summarizer/AIConversationSummaryExtension.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/AI/AI Summarizer/AIConversationSummaryStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/AI/AI Summarizer/AIConversationSummaryStyle.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/AI/AI Summarizer/CometChatAIConversationSummary.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/AI/AI Summarizer/CometChatAIConversationSummary.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/AI/AIAssistanceChatHistoryShimmerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/AI/AIAssistanceChatHistoryShimmerView.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/AI/AIAssistanceChatHistoryViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/AI/AIAssistanceChatHistoryViewModel.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/AI/AIAssistantChatHistoryCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/AI/AIAssistantChatHistoryCell.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/AI/CometChatAIAssistanceChatHistory + Properties.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/AI/CometChatAIAssistanceChatHistory + Properties.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/AI/CometChatAIAssistanceChatHistory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/AI/CometChatAIAssistanceChatHistory.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/AI/CometChatAIAssistantBubble.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/AI/CometChatAIAssistantBubble.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/AI/CometChatAIAssistantBubbleStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/AI/CometChatAIAssistantBubbleStyle.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/AI/CometChatAiAssistantChatHistoryStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/AI/CometChatAiAssistantChatHistoryStyle.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/AI/CometChatStreamBubble.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/AI/CometChatStreamBubble.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/AI/MarkdownParserBubble.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/AI/MarkdownParserBubble.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/AI/MarkdownSources/AppKit/MarkdownParser+AppKit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/AI/MarkdownSources/AppKit/MarkdownParser+AppKit.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/AI/MarkdownSources/Common/Extensions/String+UTF16.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/AI/MarkdownSources/Common/Extensions/String+UTF16.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/AI/MarkdownSources/Common/MarkdownParser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/AI/MarkdownSources/Common/MarkdownParser.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/AI/MarkdownSources/Common/Protocols/MarkdownStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/AI/MarkdownSources/Common/Protocols/MarkdownStyle.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/AI/MarkdownSources/Common/Typealias.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/AI/MarkdownSources/Common/Typealias.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/AI/MarkdownSources/UIKit/Extensions/UIFont+Traits.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/AI/MarkdownSources/UIKit/Extensions/UIFont+Traits.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/AI/MarkdownSources/UIKit/MarkdownParser+UIKit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/AI/MarkdownSources/UIKit/MarkdownParser+UIKit.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/AI/StreamMessage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/AI/StreamMessage.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Calls/Call Bubble/CallActionBubbleStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Calls/Call Bubble/CallActionBubbleStyle.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Calls/Call Bubble/CallBubbleConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Calls/Call Bubble/CallBubbleConfiguration.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Calls/Call Bubble/CallBubbleStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Calls/Call Bubble/CallBubbleStyle.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Calls/Call Bubble/CometChatCallBubble.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Calls/Call Bubble/CometChatCallBubble.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Calls/Call Button/CallButtonConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Calls/Call Button/CallButtonConfiguration.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Calls/Call Button/CallButtonStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Calls/Call Button/CallButtonStyle.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Calls/Call Button/CometChatCallButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Calls/Call Button/CometChatCallButton.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Calls/Call Extension/CallingConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Calls/Call Extension/CallingConfiguration.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Calls/Call Extension/CallingDefaultBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Calls/Call Extension/CallingDefaultBuilder.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Calls/Call Extension/CallingExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Calls/Call Extension/CallingExtension.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Calls/Call Extension/CallingExtensionDecorator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Calls/Call Extension/CallingExtensionDecorator.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Calls/Call Log/Call Logs/CallLogStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Calls/Call Log/Call Logs/CallLogStyle.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Calls/Call Log/Call Logs/CallLogsViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Calls/Call Log/Call Logs/CallLogsViewModel.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Calls/Call Log/Call Logs/CometChatCallLogShimmer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Calls/Call Log/Call Logs/CometChatCallLogShimmer.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Calls/Call Log/Call Logs/CometChatCallLogs.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Calls/Call Log/Call Logs/CometChatCallLogs.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Calls/Incoming Call/CometChatIncomingCall.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Calls/Incoming Call/CometChatIncomingCall.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Calls/Incoming Call/IncomingCallConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Calls/Incoming Call/IncomingCallConfiguration.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Calls/Incoming Call/IncomingCallStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Calls/Incoming Call/IncomingCallStyle.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Calls/Incoming Call/IncomingCallViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Calls/Incoming Call/IncomingCallViewModel.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Calls/OngoingCall/CometChatOngoingCall.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Calls/OngoingCall/CometChatOngoingCall.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Calls/OngoingCall/OngoingCallViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Calls/OngoingCall/OngoingCallViewModel.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Calls/Outgoing Call/CometChatOutgoingCall.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Calls/Outgoing Call/CometChatOutgoingCall.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Calls/Outgoing Call/OutgoingCallConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Calls/Outgoing Call/OutgoingCallConfiguration.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Calls/Outgoing Call/OutgoingCallStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Calls/Outgoing Call/OutgoingCallStyle.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Calls/Outgoing Call/OutgoingCallViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Calls/Outgoing Call/OutgoingCallViewModel.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Calls/Resources/CometChatCallBubble.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Calls/Resources/CometChatCallBubble.xib -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Calls/Resources/calls-assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Calls/Resources/calls-assets.xcassets/Contents.json -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Conversations/CometChatConversationSimmer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Conversations/CometChatConversationSimmer.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Conversations/CometChatConversations + Properties.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Conversations/CometChatConversations + Properties.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Conversations/CometChatConversations.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Conversations/CometChatConversations.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Conversations/CometChatViewModel + CallEvent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Conversations/CometChatViewModel + CallEvent.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Conversations/ConversationConstants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Conversations/ConversationConstants.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Conversations/ConversationsBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Conversations/ConversationsBuilder.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Conversations/ConversationsStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Conversations/ConversationsStyle.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Conversations/ConversationsViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Conversations/ConversationsViewModel.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Extensions/Link Preview/LinkPreviewExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Extensions/Link Preview/LinkPreviewExtension.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Extensions/Link Preview/LinkPreviewViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Extensions/Link Preview/LinkPreviewViewModel.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Extensions/Polls/CometChatCreatePoll.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Extensions/Polls/CometChatCreatePoll.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Extensions/Polls/CometChatCreatePollHeader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Extensions/Polls/CometChatCreatePollHeader.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Extensions/Polls/CometChatPollsExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Extensions/Polls/CometChatPollsExtension.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Extensions/Polls/CometChatPollsViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Extensions/Polls/CometChatPollsViewModel.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Extensions/Polls/CreatePollConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Extensions/Polls/CreatePollConfiguration.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Extensions/Polls/CreatePollStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Extensions/Polls/CreatePollStyle.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Extensions/Polls/Poll Bubble/CometChatPollsBubble.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Extensions/Polls/Poll Bubble/CometChatPollsBubble.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Extensions/Polls/Poll Bubble/PollBubbleStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Extensions/Polls/Poll Bubble/PollBubbleStyle.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Extensions/Polls/Poll Bubble/PollsOptionView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Extensions/Polls/Poll Bubble/PollsOptionView.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Extensions/Polls/Poll Bubble/PollsUtils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Extensions/Polls/Poll Bubble/PollsUtils.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Extensions/Smart Replies/CometChatSmartReplies.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Extensions/Smart Replies/CometChatSmartReplies.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Extensions/Smart Replies/SmartRepliesStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Extensions/Smart Replies/SmartRepliesStyle.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Extensions/Sticker/CometChatSticker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Extensions/Sticker/CometChatSticker.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Extensions/Sticker/CometChatStickerBubble.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Extensions/Sticker/CometChatStickerBubble.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Extensions/Sticker/CometChatStickerKeyboard.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Extensions/Sticker/CometChatStickerKeyboard.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Extensions/Sticker/CometChatStickerKeyboardItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Extensions/Sticker/CometChatStickerKeyboardItem.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Extensions/Sticker/CometChatStickerSet.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Extensions/Sticker/CometChatStickerSet.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Extensions/Sticker/CometChatStickerShimmer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Extensions/Sticker/CometChatStickerShimmer.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Extensions/Sticker/StickerAuxiliaryButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Extensions/Sticker/StickerAuxiliaryButton.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Extensions/Sticker/StickerBubbleConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Extensions/Sticker/StickerBubbleConfiguration.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Extensions/Sticker/StickerBubbleStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Extensions/Sticker/StickerBubbleStyle.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Extensions/Sticker/StickerConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Extensions/Sticker/StickerConfiguration.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Extensions/Sticker/StickerExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Extensions/Sticker/StickerExtension.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Extensions/Sticker/StickerKeyboardConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Extensions/Sticker/StickerKeyboardConfiguration.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Extensions/Sticker/StickerKeyboardStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Extensions/Sticker/StickerKeyboardStyle.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Extensions/Sticker/StickersExtensionDecorator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Extensions/Sticker/StickersExtensionDecorator.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Group Members/Change Scope /CometChatScopeChange.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Group Members/Change Scope /CometChatScopeChange.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Group Members/Change Scope /ScopeChangeStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Group Members/Change Scope /ScopeChangeStyle.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Group Members/CometChatGroupMembers + Properties.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Group Members/CometChatGroupMembers + Properties.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Group Members/CometChatGroupMembers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Group Members/CometChatGroupMembers.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Group Members/GroupMembersBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Group Members/GroupMembersBuilder.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Group Members/GroupMembersStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Group Members/GroupMembersStyle.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Group Members/GroupMembersViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Group Members/GroupMembersViewModel.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Groups/CometChatGroups + Properties.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Groups/CometChatGroups + Properties.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Groups/CometChatGroups.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Groups/CometChatGroups.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Groups/GroupsBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Groups/GroupsBuilder.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Groups/GroupsShimmerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Groups/GroupsShimmerView.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Groups/GroupsStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Groups/GroupsStyle.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Groups/GroupsViewModel + GroupsEventListener.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Groups/GroupsViewModel + GroupsEventListener.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Groups/GroupsViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Groups/GroupsViewModel.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Message Composer/CometChatMessageComposer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Message Composer/CometChatMessageComposer.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Message Composer/GrowingTextView/GrowingTextView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Message Composer/GrowingTextView/GrowingTextView.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Message Composer/MessageComposer + TextFormatter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Message Composer/MessageComposer + TextFormatter.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Message Composer/MessageComposerBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Message Composer/MessageComposerBuilder.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Message Composer/MessageComposerStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Message Composer/MessageComposerStyle.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Message Composer/MessageComposerViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Message Composer/MessageComposerViewModel.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Message Composer/MessgaePreviewView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Message Composer/MessgaePreviewView.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Message Composer/TextFormatter/MentionTextStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Message Composer/TextFormatter/MentionTextStyle.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Message Composer/TextFormatter/SuggestionItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Message Composer/TextFormatter/SuggestionItem.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Message Header/CometChatMessageHeader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Message Header/CometChatMessageHeader.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Message Header/MessageHeaderConstants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Message Header/MessageHeaderConstants.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Message Header/MessageHeaderStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Message Header/MessageHeaderStyle.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Message Header/MessageHeaderViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Message Header/MessageHeaderViewModel.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Message Information/CometChatMessageInformation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Message Information/CometChatMessageInformation.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Message Information/MessageInformationStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Message Information/MessageInformationStyle.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Message Information/MessageInformationViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Message Information/MessageInformationViewModel.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Message List/CometChatMessageList + AI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Message List/CometChatMessageList + AI.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Message List/CometChatMessageList + Properties.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Message List/CometChatMessageList + Properties.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Message List/CometChatMessageList.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Message List/CometChatMessageList.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Message List/MessageList + Reactions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Message List/MessageList + Reactions.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Message List/MessageListShimmerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Message List/MessageListShimmerView.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Message List/MessageListStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Message List/MessageListStyle.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Message List/MessageListViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Message List/MessageListViewModel.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Message List/MessagesListBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Message List/MessagesListBuilder.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Message List/ModerationStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Message List/ModerationStyle.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/CometChatBannedMemberList.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Resources/CometChatBannedMemberList.xib -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/CometChatCallActionBubble.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Resources/CometChatCallActionBubble.xib -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/CometChatCardBubble.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Resources/CometChatCardBubble.xib -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/CometChatEmojiHeader.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Resources/CometChatEmojiHeader.xib -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/CometChatEmojiKeyboardItem.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Resources/CometChatEmojiKeyboardItem.xib -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/CometChatFormBubble.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Resources/CometChatFormBubble.xib -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/CometChatGroupsWithMessages.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Resources/CometChatGroupsWithMessages.xib -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/CometChatLocationBubble.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Resources/CometChatLocationBubble.xib -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/CometChatMeetingBubble.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Resources/CometChatMeetingBubble.xib -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/CometChatMessageBubble.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Resources/CometChatMessageBubble.xib -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/CometChatMessageInput.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Resources/CometChatMessageInput.xib -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/CometChatNewMessageIndicator.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Resources/CometChatNewMessageIndicator.xib -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/CometChatQuickView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Resources/CometChatQuickView.xib -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/CometChatTextAutoSizeBubble.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Resources/CometChatTextAutoSizeBubble.xib -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/CometChatVideoBubble.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Resources/CometChatVideoBubble.xib -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/CometChatViewMembers.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Resources/CometChatViewMembers.xib -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/GridView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Resources/GridView.xib -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/ListModeCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Resources/ListModeCell.xib -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/audio-waveform.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Resources/audio-waveform.gif -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/chats-assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Resources/chats-assets.xcassets/Contents.json -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/groups-assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Resources/groups-assets.xcassets/Contents.json -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Resources/messages-assets.xcassets/Contents.json -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Resources/voice-recording-wavefrom.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Resources/voice-recording-wavefrom.gif -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/CometChatUIKit/CometChatUIKit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/CometChatUIKit/CometChatUIKit.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/CometChatUIKit/CometChatUIKitHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/CometChatUIKit/CometChatUIKitHelper.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/CometChatUIKit/UIKitSettings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/CometChatUIKit/UIKitSettings.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Constants/AssetConstants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Constants/AssetConstants.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Constants/DeviceTypeConstants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Constants/DeviceTypeConstants.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Constants/ExtensionConstants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Constants/ExtensionConstants.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Constants/UIKitConstants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Constants/UIKitConstants.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Events/CallEvents/CometChatCallEvents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Events/CallEvents/CometChatCallEvents.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Events/GroupEvents/CometChatGroupEvents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Events/GroupEvents/CometChatGroupEvents.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Events/SDKEventInitializer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Events/SDKEventInitializer.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Events/UIEvents/CometChatUIEventListener.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Events/UIEvents/CometChatUIEventListener.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Events/UIEvents/CometChatUIEvents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Events/UIEvents/CometChatUIEvents.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Events/UserEvent/CometChatUserEvents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Events/UserEvent/CometChatUserEvents.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/FormFields/ActionElement.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/FormFields/ActionElement.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/FormFields/ActionEntity.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/FormFields/ActionEntity.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/FormFields/ButtonElement.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/FormFields/ButtonElement.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/FormFields/CardMessage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/FormFields/CardMessage.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/FormFields/CheckboxElement.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/FormFields/CheckboxElement.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/FormFields/CustomInteractiveMessage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/FormFields/CustomInteractiveMessage.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/FormFields/DateTimeElement.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/FormFields/DateTimeElement.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/FormFields/DividerEntity.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/FormFields/DividerEntity.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/FormFields/DropdownElement.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/FormFields/DropdownElement.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/FormFields/ElementEntity.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/FormFields/ElementEntity.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/FormFields/FormMessage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/FormFields/FormMessage.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/FormFields/LabelElement.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/FormFields/LabelElement.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/FormFields/OptionElement.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/FormFields/OptionElement.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/FormFields/RadioButtonElement.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/FormFields/RadioButtonElement.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/FormFields/SchedulerMessage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/FormFields/SchedulerMessage.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/FormFields/SingleSelectElement.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/FormFields/SingleSelectElement.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/FormFields/TextInputElement.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/FormFields/TextInputElement.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Framework/AdditionalConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Framework/AdditionalConfiguration.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Framework/ChatConfigurator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Framework/ChatConfigurator.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Framework/DataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Framework/DataSource.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Framework/DataSourceDecorator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Framework/DataSourceDecorator.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Framework/DefaultExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Framework/DefaultExtensions.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Framework/ExtensionDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Framework/ExtensionDataSource.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Framework/ExtensionModerator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Framework/ExtensionModerator.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Framework/MessagesDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Framework/MessagesDataSource.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Helpers/AIAssistantIntroductionView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Helpers/AIAssistantIntroductionView.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Helpers/Array + Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Helpers/Array + Extensions.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Helpers/CallEntity/CallEntity.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Helpers/CallEntity/CallEntity.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Helpers/CallInitiator/CallInitiator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Helpers/CallInitiator/CallInitiator.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Helpers/Camera Handler/CameraHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Helpers/Camera Handler/CameraHandler.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Helpers/CometChatListBase/ListBaseStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Helpers/CometChatListBase/ListBaseStyle.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Helpers/CometChatTheme/CometChatTheme_v4.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Helpers/CometChatTheme/CometChatTheme_v4.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Helpers/CometChatTheme/Palette.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Helpers/CometChatTheme/Palette.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Helpers/CometChatTheme/Typography.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Helpers/CometChatTheme/Typography.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Helpers/CometChatWebView/CometChatWebView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Helpers/CometChatWebView/CometChatWebView.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Helpers/ConversationHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Helpers/ConversationHelper.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Helpers/DeprecatedClass.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Helpers/DeprecatedClass.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Helpers/DeviceDetection/DeviceDetection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Helpers/DeviceDetection/DeviceDetection.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Helpers/Helper Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Helpers/Helper Extensions.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Helpers/Large Emojis/LargeEmojis.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Helpers/Large Emojis/LargeEmojis.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Helpers/Set Empty Message/EmptyMessage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Helpers/Set Empty Message/EmptyMessage.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Helpers/ShimmerEffect/CometChatShimmer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Helpers/ShimmerEffect/CometChatShimmer.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Helpers/SoundManager/CometChatSoundManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Helpers/SoundManager/CometChatSoundManager.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Helpers/StateView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Helpers/StateView.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Helpers/View Transformation/Gradient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Helpers/View Transformation/Gradient.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Helpers/View Transformation/UISearchBar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Helpers/View Transformation/UISearchBar.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Helpers/View Transformation/UIView + XIB.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Helpers/View Transformation/UIView + XIB.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Models/BaseStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Models/BaseStyle.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Models/CometChatCornerStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Models/CometChatCornerStyle.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Models/CometChatGroupMemberOption.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Models/CometChatGroupMemberOption.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Models/CometChatMessageComposerAction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Models/CometChatMessageComposerAction.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Models/CometChatMessageOption.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Models/CometChatMessageOption.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Models/CometChatMessageTemplate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Models/CometChatMessageTemplate.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Models/CometChatOption.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Models/CometChatOption.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Models/LoggedInUserInformation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Models/LoggedInUserInformation.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Resources/AIRepliesCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Resources/AIRepliesCell.xib -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Resources/AudioVisualizationView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Resources/AudioVisualizationView.xib -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Resources/Color.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Resources/Color.xcassets/Contents.json -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Resources/CometChatActionItem.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Resources/CometChatActionItem.xib -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Resources/CometChatDocumentBubble.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Resources/CometChatDocumentBubble.xib -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Resources/CometChatListItem.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Resources/CometChatListItem.xib -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Resources/CometChatSectionList.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Resources/CometChatSectionList.xib -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Resources/CometChatSectionListItem.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Resources/CometChatSectionListItem.xib -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Resources/CometChatSmartReplies.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Resources/CometChatSmartReplies.xib -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Resources/CometChatSmartRepliesItem.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Resources/CometChatSmartRepliesItem.xib -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Resources/EmptyTableViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Resources/EmptyTableViewCell.xib -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Resources/IncomingCall.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Resources/IncomingCall.wav -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Resources/IncomingMessage.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Resources/IncomingMessage.wav -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Resources/IncomingMessageFromOther.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Resources/IncomingMessageFromOther.wav -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Resources/NewAnnouncement.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Resources/NewAnnouncement.wav -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Resources/OutgoingCall.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Resources/OutgoingCall.wav -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Resources/OutgoingMessage.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Resources/OutgoingMessage.wav -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Resources/ReactorsView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Resources/ReactorsView.xib -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Resources/ar.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Resources/ar.lproj/Localizable.strings -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Resources/de.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Resources/de.lproj/Localizable.strings -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Resources/en-GB.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Resources/en-GB.lproj/Localizable.strings -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Resources/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Resources/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Resources/es.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Resources/es.lproj/Localizable.strings -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Resources/fr.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Resources/fr.lproj/Localizable.strings -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Resources/hi 2.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Resources/hi 2.lproj/Localizable.strings -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Resources/hi.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Resources/hi.lproj/Localizable.strings -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Resources/hu.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Resources/hu.lproj/Localizable.strings -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Resources/ja.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Resources/ja.lproj/Localizable.strings -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Resources/ko.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Resources/ko.lproj/Localizable.strings -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Resources/lt.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Resources/lt.lproj/Localizable.strings -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Resources/ms.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Resources/ms.lproj/Localizable.strings -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Resources/nl.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Resources/nl.lproj/Localizable.strings -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Resources/pt.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Resources/pt.lproj/Localizable.strings -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Resources/ru.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Resources/ru.lproj/Localizable.strings -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Resources/shared-assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Resources/shared-assets.xcassets/Contents.json -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Resources/sv.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Resources/sv.lproj/Localizable.strings -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Resources/tr.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Resources/tr.lproj/Localizable.strings -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Resources/zh-TW.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Resources/zh-TW.lproj/Localizable.strings -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Resources/zh.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Resources/zh.lproj/Localizable.strings -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Utils/CallUtils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Utils/CallUtils.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Utils/CometChatICSParser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Utils/CometChatICSParser.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Utils/ConversationsUtils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Utils/ConversationsUtils.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Utils/GroupMembersUtils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Utils/GroupMembersUtils.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Utils/InteractiveUtils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Utils/InteractiveUtils.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Utils/MessageReceiptUtils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Utils/MessageReceiptUtils.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Utils/MessageUtils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Utils/MessageUtils.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Utils/NetworkUtils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Utils/NetworkUtils.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Utils/SchedulerUtils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Utils/SchedulerUtils.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Views/Action Item/ActionItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Views/Action Item/ActionItem.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Views/Activity Indicator/ActivityIndicator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Views/Activity Indicator/ActivityIndicator.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Views/Audio Bubble/AudioBubbleStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Views/Audio Bubble/AudioBubbleStyle.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Views/Audio Bubble/CometChatAudioBubble.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Views/Audio Bubble/CometChatAudioBubble.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Views/Avatar/AvatarStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Views/Avatar/AvatarStyle.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Views/Avatar/CometChatAvatar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Views/Avatar/CometChatAvatar.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Views/Badge/BadgeCountStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Views/Badge/BadgeCountStyle.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Views/Badge/CometChatBadge.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Views/Badge/CometChatBadge.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Views/Button/ButtonStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Views/Button/ButtonStyle.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Views/Button/CometChatButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Views/Button/CometChatButton.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Views/Date/CometChatDate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Views/Date/CometChatDate.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Views/Date/DateStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Views/Date/DateStyle.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Views/Delete Bubble/CometChatDeleteBubble.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Views/Delete Bubble/CometChatDeleteBubble.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Views/Delete Bubble/DeleteBubbleStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Views/Delete Bubble/DeleteBubbleStyle.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Views/Dialog/CometChatDialog.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Views/Dialog/CometChatDialog.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Views/Dialog/CometChatDialogStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Views/Dialog/CometChatDialogStyle.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Views/Emoji Keyboard/CometChatEmoji.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Views/Emoji Keyboard/CometChatEmoji.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Views/Emoji Keyboard/CometChatEmojiHeader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Views/Emoji Keyboard/CometChatEmojiHeader.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Views/Emoji Keyboard/EmojiKeyboardStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Views/Emoji Keyboard/EmojiKeyboardStyle.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Views/EmptyCell/EmptyTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Views/EmptyCell/EmptyTableViewCell.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Views/File Bubble/CometChatFileBubble.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Views/File Bubble/CometChatFileBubble.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Views/File Bubble/FileBubbleStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Views/File Bubble/FileBubbleStyle.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Views/Gradient View/CometChatGradientView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Views/Gradient View/CometChatGradientView.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Views/Image Bubble/CometChatImageBubble.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Views/Image Bubble/CometChatImageBubble.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Views/Image Bubble/ImageBubbleStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Views/Image Bubble/ImageBubbleStyle.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Views/Interactive Bubble/CardBubbleStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Views/Interactive Bubble/CardBubbleStyle.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Views/Interactive Bubble/FormBubbleStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Views/Interactive Bubble/FormBubbleStyle.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Views/Interactive Bubble/QuickViewStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Views/Interactive Bubble/QuickViewStyle.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Views/List Item/CometChatListItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Views/List Item/CometChatListItem.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Views/List Item/ListItemStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Views/List Item/ListItemStyle.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Views/Live Reaction/CometChatLiveReaction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Views/Live Reaction/CometChatLiveReaction.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Views/MediaRecorder/CometChatMediaRecorder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Views/MediaRecorder/CometChatMediaRecorder.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Views/MediaRecorder/MediRecorderViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Views/MediaRecorder/MediRecorderViewModel.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Views/MediaRecorder/MediaRecorderStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Views/MediaRecorder/MediaRecorderStyle.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Views/Message Action Sheet/DimmedView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Views/Message Action Sheet/DimmedView.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Views/Message Action Sheet/PanModal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Views/Message Action Sheet/PanModal.h -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Views/Message Bubble/MessageBubbleStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Views/Message Bubble/MessageBubbleStyle.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Views/Message Hyperlink/HyperlinkBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Views/Message Hyperlink/HyperlinkBuilder.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Views/Message Hyperlink/HyperlinkLabel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Views/Message Hyperlink/HyperlinkLabel.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Views/Message Hyperlink/HyperlinkType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Views/Message Hyperlink/HyperlinkType.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Views/Message Input/MessageInputStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Views/Message Input/MessageInputStyle.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Views/Receipt/CometChatReceipt.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Views/Receipt/CometChatReceipt.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Views/Receipt/ReceiptStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Views/Receipt/ReceiptStyle.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Views/Text Bubble/CometChatTextBubble.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Views/Text Bubble/CometChatTextBubble.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Views/Text Bubble/TextBubbleStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Views/Text Bubble/TextBubbleStyle.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Views/Video Bubble/CometChatVideoBubble.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Views/Video Bubble/CometChatVideoBubble.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Shared/Views/Video Bubble/VideoBubbleStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Shared/Views/Video Bubble/VideoBubbleStyle.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Users/CometChatUsers + Properties.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Users/CometChatUsers + Properties.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Users/CometChatUsers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Users/CometChatUsers.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Users/UsersBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Users/UsersBuilder.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Users/UsersShimmerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Users/UsersShimmerView.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Users/UsersStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Users/UsersStyle.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Users/UsersViewModel + UsersEventListener.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Users/UsersViewModel + UsersEventListener.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Components/Users/UsersViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Components/Users/UsersViewModel.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Extensions/CometChatSDK+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Extensions/CometChatSDK+Extensions.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Extensions/GIFImageView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Extensions/GIFImageView.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Extensions/NSLayoutConstraint+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Extensions/NSLayoutConstraint+Extensions.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Extensions/Shimmer Views/ReactionListShimmer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Extensions/Shimmer Views/ReactionListShimmer.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Extensions/UIView+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Extensions/UIView+Extensions.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Info.plist -------------------------------------------------------------------------------- /CometChatUIKitSwift/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /CometChatUIKitSwift/Theming/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Theming/.DS_Store -------------------------------------------------------------------------------- /CometChatUIKitSwift/Theming/Spacing/CometChatSpacing.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Theming/Spacing/CometChatSpacing.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Theming/Theme/CometChatColorExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Theming/Theme/CometChatColorExtensions.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Theming/Theme/CometChatTheme.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Theming/Theme/CometChatTheme.swift -------------------------------------------------------------------------------- /CometChatUIKitSwift/Theming/Typography/CometChatTypography.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/CometChatUIKitSwift/Theming/Typography/CometChatTypography.swift -------------------------------------------------------------------------------- /NotificationExtension/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/NotificationExtension/Info.plist -------------------------------------------------------------------------------- /NotificationExtension/NotificationExtension.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/NotificationExtension/NotificationExtension.entitlements -------------------------------------------------------------------------------- /NotificationExtension/NotificationService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/NotificationExtension/NotificationService.swift -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/Package.swift -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/Podfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/README.md -------------------------------------------------------------------------------- /SampleApp/AppConstants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleApp/AppConstants.swift -------------------------------------------------------------------------------- /SampleApp/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleApp/AppDelegate.swift -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleApp/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/AppIcon.appiconset/100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleApp/Assets.xcassets/AppIcon.appiconset/100.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/AppIcon.appiconset/102.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleApp/Assets.xcassets/AppIcon.appiconset/102.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/AppIcon.appiconset/1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleApp/Assets.xcassets/AppIcon.appiconset/1024.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/AppIcon.appiconset/108.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleApp/Assets.xcassets/AppIcon.appiconset/108.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/AppIcon.appiconset/114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleApp/Assets.xcassets/AppIcon.appiconset/114.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/AppIcon.appiconset/120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleApp/Assets.xcassets/AppIcon.appiconset/120.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/AppIcon.appiconset/128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleApp/Assets.xcassets/AppIcon.appiconset/128.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/AppIcon.appiconset/144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleApp/Assets.xcassets/AppIcon.appiconset/144.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/AppIcon.appiconset/152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleApp/Assets.xcassets/AppIcon.appiconset/152.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/AppIcon.appiconset/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleApp/Assets.xcassets/AppIcon.appiconset/16.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/AppIcon.appiconset/167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleApp/Assets.xcassets/AppIcon.appiconset/167.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/AppIcon.appiconset/172.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleApp/Assets.xcassets/AppIcon.appiconset/172.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/AppIcon.appiconset/180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleApp/Assets.xcassets/AppIcon.appiconset/180.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/AppIcon.appiconset/196.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleApp/Assets.xcassets/AppIcon.appiconset/196.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/AppIcon.appiconset/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleApp/Assets.xcassets/AppIcon.appiconset/20.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/AppIcon.appiconset/216.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleApp/Assets.xcassets/AppIcon.appiconset/216.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/AppIcon.appiconset/234.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleApp/Assets.xcassets/AppIcon.appiconset/234.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/AppIcon.appiconset/256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleApp/Assets.xcassets/AppIcon.appiconset/256.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/AppIcon.appiconset/258.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleApp/Assets.xcassets/AppIcon.appiconset/258.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/AppIcon.appiconset/29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleApp/Assets.xcassets/AppIcon.appiconset/29.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/AppIcon.appiconset/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleApp/Assets.xcassets/AppIcon.appiconset/32.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/AppIcon.appiconset/40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleApp/Assets.xcassets/AppIcon.appiconset/40.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/AppIcon.appiconset/48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleApp/Assets.xcassets/AppIcon.appiconset/48.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/AppIcon.appiconset/50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleApp/Assets.xcassets/AppIcon.appiconset/50.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/AppIcon.appiconset/512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleApp/Assets.xcassets/AppIcon.appiconset/512.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/AppIcon.appiconset/55.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleApp/Assets.xcassets/AppIcon.appiconset/55.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/AppIcon.appiconset/57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleApp/Assets.xcassets/AppIcon.appiconset/57.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/AppIcon.appiconset/58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleApp/Assets.xcassets/AppIcon.appiconset/58.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/AppIcon.appiconset/60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleApp/Assets.xcassets/AppIcon.appiconset/60.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/AppIcon.appiconset/64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleApp/Assets.xcassets/AppIcon.appiconset/64.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/AppIcon.appiconset/66.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleApp/Assets.xcassets/AppIcon.appiconset/66.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/AppIcon.appiconset/72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleApp/Assets.xcassets/AppIcon.appiconset/72.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/AppIcon.appiconset/76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleApp/Assets.xcassets/AppIcon.appiconset/76.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/AppIcon.appiconset/80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleApp/Assets.xcassets/AppIcon.appiconset/80.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/AppIcon.appiconset/87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleApp/Assets.xcassets/AppIcon.appiconset/87.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/AppIcon.appiconset/88.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleApp/Assets.xcassets/AppIcon.appiconset/88.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/AppIcon.appiconset/92.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleApp/Assets.xcassets/AppIcon.appiconset/92.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleApp/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/CometChat horizontal logo 4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleApp/Assets.xcassets/CometChat horizontal logo 4.imageset/Contents.json -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleApp/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/India-flag.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleApp/Assets.xcassets/India-flag.imageset/Contents.json -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/India-flag.imageset/IN - India.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/SampleApp/Assets.xcassets/ban_member.imageset/Base_iOS Icons@3x.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/ban_member.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleApp/Assets.xcassets/ban_member.imageset/Contents.json -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/ban_members.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleApp/Assets.xcassets/ban_members.imageset/Contents.json -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/ban_members.imageset/iOS Icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/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/HEAD/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/HEAD/SampleApp/Assets.xcassets/ban_members.imageset/iOS Icons@3x.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/block_image.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleApp/Assets.xcassets/block_image.imageset/Contents.json -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/block_image.imageset/iOS Icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/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/HEAD/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/HEAD/SampleApp/Assets.xcassets/block_image.imageset/iOS Icons@3x.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/cometchat-logo-with-name.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleApp/Assets.xcassets/cometchat-logo-with-name.imageset/Contents.json -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/cometchat-logo.imageset/Cometchat 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/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/HEAD/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/HEAD/SampleApp/Assets.xcassets/cometchat-logo.imageset/Cometchat.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/cometchat-logo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleApp/Assets.xcassets/cometchat-logo.imageset/Contents.json -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/cometchat_white.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleApp/Assets.xcassets/cometchat_white.imageset/Contents.json -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/cometchat_white.imageset/cometchat_white-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/SampleApp/Assets.xcassets/cometchat_white.imageset/cometchat_white@3x.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/eu-flag.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleApp/Assets.xcassets/eu-flag.imageset/Contents.json -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/eu-flag.imageset/image 59.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/SampleApp/Assets.xcassets/groups-create.imageset/Base_Icon@3x.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/groups-create.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleApp/Assets.xcassets/groups-create.imageset/Contents.json -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/missedCall.imageset/Base_Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleApp/Assets.xcassets/missedCall.imageset/Base_Icon.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/missedCall.imageset/Base_Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleApp/Assets.xcassets/missedCall.imageset/Base_Icon@2x.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/missedCall.imageset/Base_Icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleApp/Assets.xcassets/missedCall.imageset/Base_Icon@3x.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/missedCall.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleApp/Assets.xcassets/missedCall.imageset/Contents.json -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/missed_call_image.imageset/Base_Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/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/HEAD/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/HEAD/SampleApp/Assets.xcassets/missed_call_image.imageset/Base_Icon@3x.png -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/missed_call_image.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleApp/Assets.xcassets/missed_call_image.imageset/Contents.json -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/us-flag.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleApp/Assets.xcassets/us-flag.imageset/Contents.json -------------------------------------------------------------------------------- /SampleApp/Assets.xcassets/us-flag.imageset/US - United States.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/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/HEAD/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/HEAD/SampleApp/Assets.xcassets/us-flag.imageset/US - United States@3x.png -------------------------------------------------------------------------------- /SampleApp/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleApp/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /SampleApp/Helper/CustomTextFiled.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleApp/Helper/CustomTextFiled.swift -------------------------------------------------------------------------------- /SampleApp/Helper/Extentions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleApp/Helper/Extentions.swift -------------------------------------------------------------------------------- /SampleApp/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleApp/Info.plist -------------------------------------------------------------------------------- /SampleApp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleApp/README.md -------------------------------------------------------------------------------- /SampleApp/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleApp/SceneDelegate.swift -------------------------------------------------------------------------------- /SampleApp/View Controllers/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleApp/View Controllers/.DS_Store -------------------------------------------------------------------------------- /SampleApp/View Controllers/CometChat Components/Add Members/AddMembersVC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleApp/View Controllers/CometChat Components/Add Members/AddMembersVC.swift -------------------------------------------------------------------------------- /SampleApp/View Controllers/CometChat Components/Banned Members/BannedMembersVC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleApp/View Controllers/CometChat Components/Banned Members/BannedMembersVC.swift -------------------------------------------------------------------------------- /SampleApp/View Controllers/CometChat Components/CreateConversations.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleApp/View Controllers/CometChat Components/CreateConversations.swift -------------------------------------------------------------------------------- /SampleApp/View Controllers/CometChat Components/Group Component/CreateGroupVC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleApp/View Controllers/CometChat Components/Group Component/CreateGroupVC.swift -------------------------------------------------------------------------------- /SampleApp/View Controllers/CometChat Components/MessagesVC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleApp/View Controllers/CometChat Components/MessagesVC.swift -------------------------------------------------------------------------------- /SampleApp/View Controllers/CometChat Components/ThreadedMessagesVC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleApp/View Controllers/CometChat Components/ThreadedMessagesVC.swift -------------------------------------------------------------------------------- /SampleApp/View Controllers/HomeScreenViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleApp/View Controllers/HomeScreenViewController.swift -------------------------------------------------------------------------------- /SampleApp/View Controllers/LoginVC/ChangeAppCredentialsVC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleApp/View Controllers/LoginVC/ChangeAppCredentialsVC.swift -------------------------------------------------------------------------------- /SampleApp/View Controllers/LoginVC/LoginWithUidVC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleApp/View Controllers/LoginVC/LoginWithUidVC.swift -------------------------------------------------------------------------------- /SampleApp/View Controllers/LoginVC/SampleUserCVCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleApp/View Controllers/LoginVC/SampleUserCVCell.swift -------------------------------------------------------------------------------- /SampleApp/View Controllers/SplitScreenViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleApp/View Controllers/SplitScreenViewController.swift -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/AppConstants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleAppPushNotificationAPNs/AppConstants.swift -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleAppPushNotificationAPNs/AppDelegate.swift -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleAppPushNotificationAPNs/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/100.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/102.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/102.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/1024.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/108.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/108.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/114.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/120.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/128.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/144.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/152.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/16.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/167.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/172.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/172.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/180.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/196.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/196.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/20.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/216.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/216.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/234.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/234.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/256.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/258.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/258.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/29.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/32.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/40.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/48.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/50.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/512.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/55.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/55.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/57.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/58.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/60.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/64.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/66.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/66.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/72.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/76.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/80.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/87.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/88.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/88.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/92.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/92.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleAppPushNotificationAPNs/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleAppPushNotificationAPNs/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/India-flag.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleAppPushNotificationAPNs/Assets.xcassets/India-flag.imageset/Contents.json -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/India-flag.imageset/IN - India.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/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/HEAD/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/HEAD/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/HEAD/SampleAppPushNotificationAPNs/Assets.xcassets/ban_member.imageset/Base_iOS Icons.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/ban_member.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleAppPushNotificationAPNs/Assets.xcassets/ban_member.imageset/Contents.json -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/ban_members.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleAppPushNotificationAPNs/Assets.xcassets/ban_members.imageset/Contents.json -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/ban_members.imageset/iOS Icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/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/HEAD/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/HEAD/SampleAppPushNotificationAPNs/Assets.xcassets/ban_members.imageset/iOS Icons@3x.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/block_image.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleAppPushNotificationAPNs/Assets.xcassets/block_image.imageset/Contents.json -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/block_image.imageset/iOS Icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/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/HEAD/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/HEAD/SampleAppPushNotificationAPNs/Assets.xcassets/block_image.imageset/iOS Icons@3x.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/cometchat-logo.imageset/Cometchat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleAppPushNotificationAPNs/Assets.xcassets/cometchat-logo.imageset/Cometchat.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/cometchat-logo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleAppPushNotificationAPNs/Assets.xcassets/cometchat-logo.imageset/Contents.json -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/cometchat_white.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleAppPushNotificationAPNs/Assets.xcassets/cometchat_white.imageset/Contents.json -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/eu-flag.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleAppPushNotificationAPNs/Assets.xcassets/eu-flag.imageset/Contents.json -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/eu-flag.imageset/image 59.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/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/HEAD/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/HEAD/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/HEAD/SampleAppPushNotificationAPNs/Assets.xcassets/groups-create.imageset/Base_Icon.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/groups-create.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleAppPushNotificationAPNs/Assets.xcassets/groups-create.imageset/Contents.json -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/missedCall.imageset/Base_Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleAppPushNotificationAPNs/Assets.xcassets/missedCall.imageset/Base_Icon.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/missedCall.imageset/Base_Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleAppPushNotificationAPNs/Assets.xcassets/missedCall.imageset/Base_Icon@2x.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/missedCall.imageset/Base_Icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleAppPushNotificationAPNs/Assets.xcassets/missedCall.imageset/Base_Icon@3x.png -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/missedCall.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleAppPushNotificationAPNs/Assets.xcassets/missedCall.imageset/Contents.json -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Assets.xcassets/us-flag.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleAppPushNotificationAPNs/Assets.xcassets/us-flag.imageset/Contents.json -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleAppPushNotificationAPNs/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Helper/CustomTextFiled.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleAppPushNotificationAPNs/Helper/CustomTextFiled.swift -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Helper/Extentions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleAppPushNotificationAPNs/Helper/Extentions.swift -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleAppPushNotificationAPNs/Info.plist -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Push Notification + VoIP/AppDelegate + PN.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleAppPushNotificationAPNs/Push Notification + VoIP/AppDelegate + PN.swift -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Push Notification + VoIP/AppDelegate + VoIP.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleAppPushNotificationAPNs/Push Notification + VoIP/AppDelegate + VoIP.swift -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Push Notification + VoIP/CometChatAPNsHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleAppPushNotificationAPNs/Push Notification + VoIP/CometChatAPNsHelper.swift -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/Push Notification + VoIP/CometChatPNHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleAppPushNotificationAPNs/Push Notification + VoIP/CometChatPNHelper.swift -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleAppPushNotificationAPNs/README.md -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleAppPushNotificationAPNs/SceneDelegate.swift -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/View Controllers/CometChat Components/MessagesVC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleAppPushNotificationAPNs/View Controllers/CometChat Components/MessagesVC.swift -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/View Controllers/HomeScreenViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleAppPushNotificationAPNs/View Controllers/HomeScreenViewController.swift -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/View Controllers/LoginVC/ChangeAppCredentialsVC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleAppPushNotificationAPNs/View Controllers/LoginVC/ChangeAppCredentialsVC.swift -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/View Controllers/LoginVC/LoginWithUidVC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleAppPushNotificationAPNs/View Controllers/LoginVC/LoginWithUidVC.swift -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/View Controllers/LoginVC/SampleUserCVCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleAppPushNotificationAPNs/View Controllers/LoginVC/SampleUserCVCell.swift -------------------------------------------------------------------------------- /SampleAppPushNotificationAPNs/View Controllers/SplitScreenViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/SampleAppPushNotificationAPNs/View Controllers/SplitScreenViewController.swift -------------------------------------------------------------------------------- /screenshots/ai-agents-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/screenshots/ai-agents-overview.png -------------------------------------------------------------------------------- /screenshots/overview_cometchat_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cometchat/cometchat-uikit-ios/HEAD/screenshots/overview_cometchat_screen.png --------------------------------------------------------------------------------