├── .gitignore ├── LGWeChatKit.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── jamy.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── jamy.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ ├── LGWeChatKit.xcscheme │ └── xcschememanagement.plist ├── LGWeChatKit ├── AppDelegate.swift ├── Assets.xcassets │ ├── Album_ToolViewEmotion.imageset │ │ ├── Album_ToolViewEmotion@2x.png │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── CellBlueSelected.imageset │ │ ├── CellBlueSelected@2x.png │ │ └── Contents.json │ ├── CellGreySelected.imageset │ │ ├── CellGreySelected@2x.png │ │ └── Contents.json │ ├── Contents.json │ ├── DefaultHead.imageset │ │ ├── Contents.json │ │ └── DefaultHead@2x.png │ ├── MessageVideoPlay.imageset │ │ ├── Contents.json │ │ ├── MessageVideoPlay@2x.png │ │ └── MessageVideoPlay@3x.png │ ├── ReceiverImageNodeBorder.imageset │ │ ├── Contents.json │ │ ├── ReceiverImageNodeBorder@2x.png │ │ └── ReceiverImageNodeBorder@3x.png │ ├── ReceiverImageNodeMask.imageset │ │ ├── Contents.json │ │ └── ReceiverImageNodeMask@2x.png │ ├── ReceiverTextNodeBkg.imageset │ │ ├── Contents.json │ │ ├── ReceiverTextNodeBkg@2x.png │ │ └── ReceiverTextNodeBkg@3x.png │ ├── ReceiverTextNodeBkgHL.imageset │ │ ├── Contents.json │ │ ├── ReceiverTextNodeBkgHL@2x.png │ │ └── ReceiverTextNodeBkgHL@3x.png │ ├── ReceiverVoiceNodeBack.imageset │ │ ├── Contents.json │ │ ├── ReceiverVoiceNodeBack@2x.png │ │ └── ReceiverVoiceNodeBack@3x.png │ ├── ReceiverVoiceNodeBkgforward.imageset │ │ ├── Contents.json │ │ └── ReceiverVoiceNodeBkgforward@2x.png │ ├── ReceiverVoiceNodeBkgforwardHL.imageset │ │ ├── Contents.json │ │ └── ReceiverVoiceNodeBkgforwardHL@2x.png │ ├── ReceiverVoiceNodePlaying.imageset │ │ ├── Contents.json │ │ ├── ReceiverVoiceNodePlaying@2x.png │ │ └── ReceiverVoiceNodePlaying@3x.png │ ├── ReceiverVoiceNodePlaying001.imageset │ │ ├── Contents.json │ │ ├── ReceiverVoiceNodePlaying001@2x.png │ │ └── ReceiverVoiceNodePlaying001@3x.png │ ├── ReceiverVoiceNodePlaying002.imageset │ │ ├── Contents.json │ │ ├── ReceiverVoiceNodePlaying002@2x.png │ │ └── ReceiverVoiceNodePlaying002@3x.png │ ├── ReceiverVoiceNodePlaying003.imageset │ │ ├── Contents.json │ │ ├── ReceiverVoiceNodePlaying003@2x.png │ │ └── ReceiverVoiceNodePlaying003@3x.png │ ├── SenderTextNodeBkg.imageset │ │ ├── Contents.json │ │ ├── SenderTextNodeBkg@2x.png │ │ └── SenderTextNodeBkg@3x.png │ ├── SenderTextNodeBkgHL.imageset │ │ ├── Contents.json │ │ ├── SenderTextNodeBkgHL@2x.png │ │ └── SenderTextNodeBkgHL@3x.png │ ├── SenderVoiceNodeBack.imageset │ │ ├── Contents.json │ │ ├── SenderVoiceNodeBack@2x.png │ │ └── SenderVoiceNodeBack@3x.png │ ├── SenderVoiceNodeBkgforward.imageset │ │ ├── Contents.json │ │ └── SenderVoiceNodeBkgforward@2x.png │ ├── SenderVoiceNodeBkgforwardHL.imageset │ │ ├── Contents.json │ │ └── SenderVoiceNodeBkgforwardHL@2x.png │ ├── SenderVoiceNodePlaying.imageset │ │ ├── Contents.json │ │ ├── SenderVoiceNodePlaying@2x.png │ │ └── SenderVoiceNodePlaying@3x.png │ ├── SenderVoiceNodePlaying001.imageset │ │ ├── Contents.json │ │ ├── SenderVoiceNodePlaying001@2x.png │ │ └── SenderVoiceNodePlaying001@3x.png │ ├── SenderVoiceNodePlaying002.imageset │ │ ├── Contents.json │ │ ├── SenderVoiceNodePlaying002@2x.png │ │ └── SenderVoiceNodePlaying002@3x.png │ ├── SenderVoiceNodePlaying003.imageset │ │ ├── Contents.json │ │ ├── SenderVoiceNodePlaying003@2x.png │ │ └── SenderVoiceNodePlaying003@3x.png │ ├── SignUpError.imageset │ │ ├── Contents.json │ │ └── SignUpError@2x.png │ ├── ToolViewEmotion.imageset │ │ ├── Contents.json │ │ ├── ToolViewEmotion@2x.png │ │ └── ToolViewEmotion@3x.png │ ├── ToolViewEmotionHL.imageset │ │ ├── Contents.json │ │ ├── ToolViewEmotionHL@2x.png │ │ └── ToolViewEmotionHL@3x.png │ ├── ToolViewInputVoice.imageset │ │ ├── Contents.json │ │ ├── ToolViewInputVoice@2x.png │ │ └── ToolViewInputVoice@3x.png │ ├── ToolViewInputVoiceHL.imageset │ │ ├── Contents.json │ │ ├── ToolViewInputVoiceHL@2x.png │ │ └── ToolViewInputVoiceHL@3x.png │ ├── ToolViewKeyboard.imageset │ │ ├── Contents.json │ │ ├── ToolViewKeyboard@2x.png │ │ └── ToolViewKeyboard@3x.png │ ├── ToolViewKeyboardHL.imageset │ │ ├── Contents.json │ │ ├── ToolViewKeyboardHL@2x.png │ │ └── ToolViewKeyboardHL@3x.png │ ├── TypeSelectorBtnHL_Black.imageset │ │ ├── Contents.json │ │ ├── TypeSelectorBtnHL_Black@2x.png │ │ └── TypeSelectorBtnHL_Black@3x.png │ ├── TypeSelectorBtn_Black.imageset │ │ ├── Contents.json │ │ ├── TypeSelectorBtn_Black@2x.png │ │ └── TypeSelectorBtn_Black@3x.png │ ├── audio │ │ ├── Contents.json │ │ ├── record_animate_01.imageset │ │ │ ├── Contents.json │ │ │ ├── record_animate_01.png │ │ │ └── record_animate_01@2x.png │ │ ├── record_animate_02.imageset │ │ │ ├── Contents.json │ │ │ ├── record_animate_02.png │ │ │ └── record_animate_02@2x.png │ │ ├── record_animate_03.imageset │ │ │ ├── Contents.json │ │ │ ├── record_animate_03.png │ │ │ └── record_animate_03@2x.png │ │ ├── record_animate_04.imageset │ │ │ ├── Contents.json │ │ │ ├── record_animate_04.png │ │ │ └── record_animate_04@2x.png │ │ ├── record_animate_05.imageset │ │ │ ├── Contents.json │ │ │ ├── record_animate_05.png │ │ │ └── record_animate_05@2x.png │ │ ├── record_animate_06.imageset │ │ │ ├── Contents.json │ │ │ ├── record_animate_06.png │ │ │ └── record_animate_06@2x.png │ │ ├── record_animate_07.imageset │ │ │ ├── Contents.json │ │ │ ├── record_animate_07.png │ │ │ └── record_animate_07@2x.png │ │ ├── record_animate_08.imageset │ │ │ ├── Contents.json │ │ │ ├── record_animate_08.png │ │ │ └── record_animate_08@2x.png │ │ └── record_animate_09.imageset │ │ │ ├── Contents.json │ │ │ ├── record_animate_09.png │ │ │ └── record_animate_09@2x.png │ ├── bg3.imageset │ │ ├── Contents.json │ │ └── bg3.jpg │ ├── icon.imageset │ │ ├── Contents.json │ │ ├── icon@2x.png │ │ └── icon@3x.png │ ├── mmplayer_idle.imageset │ │ ├── Contents.json │ │ ├── mmplayer_idle@2x.png │ │ └── mmplayer_idle@3x.png │ ├── scan_bl.imageset │ │ ├── Contents.json │ │ └── scan_bl@2x.png │ ├── scan_br.imageset │ │ ├── Contents.json │ │ └── scan_br@2x.png │ ├── scan_line.imageset │ │ ├── Contents.json │ │ └── scan_line@2x.png │ ├── scan_tl.imageset │ │ ├── Contents.json │ │ └── scan_tl@2x.png │ ├── scan_tr.imageset │ │ ├── Contents.json │ │ └── scan_tr@2x.png │ ├── shareMore │ │ ├── Contents.json │ │ ├── sharemorePay.imageset │ │ │ ├── Contents.json │ │ │ ├── sharemorePay@2x.png │ │ │ └── sharemorePay@3x.png │ │ ├── sharemore_friendcard.imageset │ │ │ ├── Contents.json │ │ │ ├── sharemore_friendcard@2x.png │ │ │ └── sharemore_friendcard@3x.png │ │ ├── sharemore_location.imageset │ │ │ ├── Contents.json │ │ │ ├── sharemore_location@2x.png │ │ │ └── sharemore_location@3x.png │ │ ├── sharemore_myfav.imageset │ │ │ ├── Contents.json │ │ │ ├── sharemore_myfav@2x.png │ │ │ └── sharemore_myfav@3x.png │ │ ├── sharemore_otherDown.imageset │ │ │ ├── Contents.json │ │ │ ├── sharemore_otherDown@2x.png │ │ │ └── sharemore_otherDown@3x.png │ │ ├── sharemore_otherDown_HL.imageset │ │ │ ├── Contents.json │ │ │ ├── sharemore_otherDown_HL@2x.png │ │ │ └── sharemore_otherDown_HL@3x.png │ │ ├── sharemore_pic.imageset │ │ │ ├── Contents.json │ │ │ ├── sharemore_pic@2x.png │ │ │ └── sharemore_pic@3x.png │ │ ├── sharemore_picbg.imageset │ │ │ ├── Contents.json │ │ │ └── sharemore_picbg@2x.png │ │ ├── sharemore_sight.imageset │ │ │ ├── Contents.json │ │ │ ├── sharemore_sight@2x.png │ │ │ └── sharemore_sight@3x.png │ │ ├── sharemore_videovoip.imageset │ │ │ ├── Contents.json │ │ │ ├── sharemore_videovoip@2x.png │ │ │ └── sharemore_videovoip@3x.png │ │ └── sharemore_wxtalk.imageset │ │ │ ├── Contents.json │ │ │ ├── sharemore_wxtalk@2x.png │ │ │ └── sharemore_wxtalk@3x.png │ ├── share_auth_fail.imageset │ │ ├── Contents.json │ │ └── share_auth_fail@2x.png │ ├── tabBar │ │ ├── Contents.json │ │ ├── tabbar_badge.imageset │ │ │ ├── Contents.json │ │ │ ├── tabbar_badge@2x.png │ │ │ └── tabbar_badge@3x.png │ │ ├── tabbar_contacts.imageset │ │ │ ├── Contents.json │ │ │ ├── tabbar_contacts@2x.png │ │ │ └── tabbar_contacts@3x.png │ │ ├── tabbar_contactsHL.imageset │ │ │ ├── Contents.json │ │ │ ├── tabbar_contactsHL@2x.png │ │ │ └── tabbar_contactsHL@3x.png │ │ ├── tabbar_discover.imageset │ │ │ ├── Contents.json │ │ │ ├── tabbar_discover@2x.png │ │ │ └── tabbar_discover@3x.png │ │ ├── tabbar_discoverHL.imageset │ │ │ ├── Contents.json │ │ │ ├── tabbar_discoverHL@2x.png │ │ │ └── tabbar_discoverHL@3x.png │ │ ├── tabbar_mainframe.imageset │ │ │ ├── Contents.json │ │ │ ├── tabbar_mainframe@2x.png │ │ │ └── tabbar_mainframe@3x.png │ │ ├── tabbar_mainframeHL.imageset │ │ │ ├── Contents.json │ │ │ ├── tabbar_mainframeHL@2x.png │ │ │ └── tabbar_mainframeHL@3x.png │ │ ├── tabbar_me.imageset │ │ │ ├── Contents.json │ │ │ ├── tabbar_me@2x.png │ │ │ └── tabbar_me@3x.png │ │ └── tabbar_meHL.imageset │ │ │ ├── Contents.json │ │ │ ├── tabbar_meHL@2x.png │ │ │ └── tabbar_meHL@3x.png │ └── testImage │ │ ├── Contents.json │ │ ├── icon0.imageset │ │ ├── Contents.json │ │ └── icon5.png │ │ ├── icon1.imageset │ │ ├── Contents.json │ │ └── icon1.png │ │ ├── icon2.imageset │ │ ├── Contents.json │ │ └── icon2.png │ │ ├── icon3.imageset │ │ ├── Contents.json │ │ └── icon3.png │ │ └── icon4.imageset │ │ ├── Contents.json │ │ └── icon4.jpg ├── Base.lproj │ └── LaunchScreen.storyboard ├── Info.plist ├── LGChatKit │ ├── Extension │ │ ├── CGRectEx.swift │ │ ├── LGColorEx.swift │ │ └── LGCommonEx.swift │ ├── conversion │ │ ├── LGConversationViewController.swift │ │ ├── imagePick │ │ │ ├── LGAssertGridViewCell.swift │ │ │ ├── LGAssetGridViewController.swift │ │ │ ├── LGAssetModel.swift │ │ │ ├── LGAssetToolView.swift │ │ │ ├── LGAssetViewCell.swift │ │ │ ├── LGAssetViewController.swift │ │ │ ├── LGAssetViewModel.swift │ │ │ ├── LGCollectionViewControllerExtension.swift │ │ │ ├── LGDismissAnimationController.swift │ │ │ ├── LGImagePickController.swift │ │ │ ├── LGImagePickModel.swift │ │ │ ├── LGImagePickViewModel.swift │ │ │ └── LGPresentAnimationController.swift │ │ ├── mapKit │ │ │ ├── LGMapViewController.swift │ │ │ └── placeAnnotation.swift │ │ ├── video │ │ │ ├── LGAVPlayView.swift │ │ │ ├── LGRecordVideoModel.swift │ │ │ ├── LGRecordVideoView.swift │ │ │ └── LGVideoController.swift │ │ ├── view │ │ │ ├── Emotion │ │ │ │ └── EmotionResource │ │ │ │ │ ├── BarButton_Red@2x.png │ │ │ │ │ ├── DeleteEmoticonBtn@2x.png │ │ │ │ │ ├── Expression_100@2x.png │ │ │ │ │ ├── Expression_101@2x.png │ │ │ │ │ ├── Expression_102@2x.png │ │ │ │ │ ├── Expression_103@2x.png │ │ │ │ │ ├── Expression_104@2x.png │ │ │ │ │ ├── Expression_105@2x.png │ │ │ │ │ ├── Expression_10@2x.png │ │ │ │ │ ├── Expression_11@2x.png │ │ │ │ │ ├── Expression_12@2x.png │ │ │ │ │ ├── Expression_13@2x.png │ │ │ │ │ ├── Expression_14@2x.png │ │ │ │ │ ├── Expression_15@2x.png │ │ │ │ │ ├── Expression_16@2x.png │ │ │ │ │ ├── Expression_17@2x.png │ │ │ │ │ ├── Expression_18@2x.png │ │ │ │ │ ├── Expression_19@2x.png │ │ │ │ │ ├── Expression_1@2x.png │ │ │ │ │ ├── Expression_20@2x.png │ │ │ │ │ ├── Expression_21@2x.png │ │ │ │ │ ├── Expression_22@2x.png │ │ │ │ │ ├── Expression_23@2x.png │ │ │ │ │ ├── Expression_24@2x.png │ │ │ │ │ ├── Expression_25@2x.png │ │ │ │ │ ├── Expression_26@2x.png │ │ │ │ │ ├── Expression_27@2x.png │ │ │ │ │ ├── Expression_28@2x.png │ │ │ │ │ ├── Expression_29@2x.png │ │ │ │ │ ├── Expression_2@2x.png │ │ │ │ │ ├── Expression_30@2x.png │ │ │ │ │ ├── Expression_31@2x.png │ │ │ │ │ ├── Expression_32@2x.png │ │ │ │ │ ├── Expression_33@2x.png │ │ │ │ │ ├── Expression_34@2x.png │ │ │ │ │ ├── Expression_35@2x.png │ │ │ │ │ ├── Expression_36@2x.png │ │ │ │ │ ├── Expression_37@2x.png │ │ │ │ │ ├── Expression_38@2x.png │ │ │ │ │ ├── Expression_39@2x.png │ │ │ │ │ ├── Expression_3@2x.png │ │ │ │ │ ├── Expression_40@2x.png │ │ │ │ │ ├── Expression_41@2x.png │ │ │ │ │ ├── Expression_42@2x.png │ │ │ │ │ ├── Expression_43@2x.png │ │ │ │ │ ├── Expression_44@2x.png │ │ │ │ │ ├── Expression_45@2x.png │ │ │ │ │ ├── Expression_46@2x.png │ │ │ │ │ ├── Expression_47@2x.png │ │ │ │ │ ├── Expression_48@2x.png │ │ │ │ │ ├── Expression_49@2x.png │ │ │ │ │ ├── Expression_4@2x.png │ │ │ │ │ ├── Expression_50@2x.png │ │ │ │ │ ├── Expression_51@2x.png │ │ │ │ │ ├── Expression_52@2x.png │ │ │ │ │ ├── Expression_53@2x.png │ │ │ │ │ ├── Expression_54@2x.png │ │ │ │ │ ├── Expression_55@2x.png │ │ │ │ │ ├── Expression_56@2x.png │ │ │ │ │ ├── Expression_57@2x.png │ │ │ │ │ ├── Expression_58@2x.png │ │ │ │ │ ├── Expression_59@2x.png │ │ │ │ │ ├── Expression_5@2x.png │ │ │ │ │ ├── Expression_60@2x.png │ │ │ │ │ ├── Expression_61@2x.png │ │ │ │ │ ├── Expression_62@2x.png │ │ │ │ │ ├── Expression_63@2x.png │ │ │ │ │ ├── Expression_64@2x.png │ │ │ │ │ ├── Expression_65@2x.png │ │ │ │ │ ├── Expression_66@2x.png │ │ │ │ │ ├── Expression_67@2x.png │ │ │ │ │ ├── Expression_68@2x.png │ │ │ │ │ ├── Expression_69@2x.png │ │ │ │ │ ├── Expression_6@2x.png │ │ │ │ │ ├── Expression_70@2x.png │ │ │ │ │ ├── Expression_71@2x.png │ │ │ │ │ ├── Expression_72@2x.png │ │ │ │ │ ├── Expression_73@2x.png │ │ │ │ │ ├── Expression_74@2x.png │ │ │ │ │ ├── Expression_75@2x.png │ │ │ │ │ ├── Expression_76@2x.png │ │ │ │ │ ├── Expression_77@2x.png │ │ │ │ │ ├── Expression_78@2x.png │ │ │ │ │ ├── Expression_79@2x.png │ │ │ │ │ ├── Expression_7@2x.png │ │ │ │ │ ├── Expression_80@2x.png │ │ │ │ │ ├── Expression_81@2x.png │ │ │ │ │ ├── Expression_82@2x.png │ │ │ │ │ ├── Expression_83@2x.png │ │ │ │ │ ├── Expression_84@2x.png │ │ │ │ │ ├── Expression_85@2x.png │ │ │ │ │ ├── Expression_86@2x.png │ │ │ │ │ ├── Expression_87@2x.png │ │ │ │ │ ├── Expression_88@2x.png │ │ │ │ │ ├── Expression_89@2x.png │ │ │ │ │ ├── Expression_8@2x.png │ │ │ │ │ ├── Expression_90@2x.png │ │ │ │ │ ├── Expression_91@2x.png │ │ │ │ │ ├── Expression_92@2x.png │ │ │ │ │ ├── Expression_93@2x.png │ │ │ │ │ ├── Expression_94@2x.png │ │ │ │ │ ├── Expression_95@2x.png │ │ │ │ │ ├── Expression_96@2x.png │ │ │ │ │ ├── Expression_97@2x.png │ │ │ │ │ ├── Expression_98@2x.png │ │ │ │ │ ├── Expression_99@2x.png │ │ │ │ │ ├── Expression_9@2x.png │ │ │ │ │ ├── around-friends_keybroad@2x.png │ │ │ │ │ └── emoji_config.json │ │ │ ├── LGChatBaseCell.swift │ │ │ ├── LGChatImageCell.swift │ │ │ ├── LGChatTextCell.swift │ │ │ ├── LGChatVideoCell.swift │ │ │ ├── LGChatVoiceCell.swift │ │ │ ├── LGEmotionView.swift │ │ │ ├── LGMoreActionView.swift │ │ │ ├── LGRecordIndicatorView.swift │ │ │ ├── LGShareMoreView.swift │ │ │ └── LGToolBarView.swift │ │ └── viewModel │ │ │ └── message.swift │ ├── conversionList │ │ ├── LGConversationListController.swift │ │ ├── view │ │ │ ├── LGButtonView.swift │ │ │ ├── LGConversionListBaseCell.swift │ │ │ └── LGConversionListCell.swift │ │ └── viewModel │ │ │ ├── LGConversionList.swift │ │ │ └── LGConversionListCellModel.swift │ ├── find │ │ ├── LGFindViewController.swift │ │ ├── LGScanViewController.swift │ │ └── findSB.storyboard │ ├── friend │ │ ├── FriendCellModel.swift │ │ ├── FriendModel.swift │ │ ├── FriendViewModel.swift │ │ ├── LGFriendListCell.swift │ │ └── LGFriendViewController.swift │ ├── me │ │ ├── LGMeViewController.swift │ │ └── setSB.storyboard │ └── utilities │ │ ├── LGAudioPlayer.swift │ │ ├── LGAudioRecorder.swift │ │ ├── LGEmotionManager.swift │ │ └── Observable.swift ├── MessageIncoming.aiff ├── MessageOutgoing.aiff └── test.m4v ├── LGWeChatKitTests ├── Info.plist └── LGWeChatKitTests.swift ├── LGWeChatKitUITests ├── Info.plist └── LGWeChatKitUITests.swift ├── LICENSE ├── README.md └── gif ├── friend.gif ├── image.gif ├── list.gif ├── location.gif ├── paste.gif ├── recordVideo.jpg ├── scan.jpg ├── video.gif └── voice.gif /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.xcuserstate 3 | -------------------------------------------------------------------------------- /LGWeChatKit.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /LGWeChatKit.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /LGWeChatKit.xcodeproj/project.xcworkspace/xcuserdata/jamy.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit.xcodeproj/project.xcworkspace/xcuserdata/jamy.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /LGWeChatKit.xcodeproj/xcuserdata/jamy.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit.xcodeproj/xcuserdata/jamy.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /LGWeChatKit.xcodeproj/xcuserdata/jamy.xcuserdatad/xcschemes/LGWeChatKit.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit.xcodeproj/xcuserdata/jamy.xcuserdatad/xcschemes/LGWeChatKit.xcscheme -------------------------------------------------------------------------------- /LGWeChatKit.xcodeproj/xcuserdata/jamy.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit.xcodeproj/xcuserdata/jamy.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /LGWeChatKit/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/AppDelegate.swift -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/Album_ToolViewEmotion.imageset/Album_ToolViewEmotion@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/Album_ToolViewEmotion.imageset/Album_ToolViewEmotion@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/Album_ToolViewEmotion.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/Album_ToolViewEmotion.imageset/Contents.json -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/CellBlueSelected.imageset/CellBlueSelected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/CellBlueSelected.imageset/CellBlueSelected@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/CellBlueSelected.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/CellBlueSelected.imageset/Contents.json -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/CellGreySelected.imageset/CellGreySelected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/CellGreySelected.imageset/CellGreySelected@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/CellGreySelected.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/CellGreySelected.imageset/Contents.json -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/DefaultHead.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/DefaultHead.imageset/Contents.json -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/DefaultHead.imageset/DefaultHead@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/DefaultHead.imageset/DefaultHead@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/MessageVideoPlay.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/MessageVideoPlay.imageset/Contents.json -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/MessageVideoPlay.imageset/MessageVideoPlay@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/MessageVideoPlay.imageset/MessageVideoPlay@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/MessageVideoPlay.imageset/MessageVideoPlay@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/MessageVideoPlay.imageset/MessageVideoPlay@3x.png -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/ReceiverImageNodeBorder.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/ReceiverImageNodeBorder.imageset/Contents.json -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/ReceiverImageNodeBorder.imageset/ReceiverImageNodeBorder@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/ReceiverImageNodeBorder.imageset/ReceiverImageNodeBorder@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/ReceiverImageNodeBorder.imageset/ReceiverImageNodeBorder@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/ReceiverImageNodeBorder.imageset/ReceiverImageNodeBorder@3x.png -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/ReceiverImageNodeMask.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/ReceiverImageNodeMask.imageset/Contents.json -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/ReceiverImageNodeMask.imageset/ReceiverImageNodeMask@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/ReceiverImageNodeMask.imageset/ReceiverImageNodeMask@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/ReceiverTextNodeBkg.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/ReceiverTextNodeBkg.imageset/Contents.json -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/ReceiverTextNodeBkg.imageset/ReceiverTextNodeBkg@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/ReceiverTextNodeBkg.imageset/ReceiverTextNodeBkg@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/ReceiverTextNodeBkg.imageset/ReceiverTextNodeBkg@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/ReceiverTextNodeBkg.imageset/ReceiverTextNodeBkg@3x.png -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/ReceiverTextNodeBkgHL.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/ReceiverTextNodeBkgHL.imageset/Contents.json -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/ReceiverTextNodeBkgHL.imageset/ReceiverTextNodeBkgHL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/ReceiverTextNodeBkgHL.imageset/ReceiverTextNodeBkgHL@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/ReceiverTextNodeBkgHL.imageset/ReceiverTextNodeBkgHL@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/ReceiverTextNodeBkgHL.imageset/ReceiverTextNodeBkgHL@3x.png -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/ReceiverVoiceNodeBack.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/ReceiverVoiceNodeBack.imageset/Contents.json -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/ReceiverVoiceNodeBack.imageset/ReceiverVoiceNodeBack@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/ReceiverVoiceNodeBack.imageset/ReceiverVoiceNodeBack@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/ReceiverVoiceNodeBack.imageset/ReceiverVoiceNodeBack@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/ReceiverVoiceNodeBack.imageset/ReceiverVoiceNodeBack@3x.png -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/ReceiverVoiceNodeBkgforward.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/ReceiverVoiceNodeBkgforward.imageset/Contents.json -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/ReceiverVoiceNodeBkgforward.imageset/ReceiverVoiceNodeBkgforward@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/ReceiverVoiceNodeBkgforward.imageset/ReceiverVoiceNodeBkgforward@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/ReceiverVoiceNodeBkgforwardHL.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/ReceiverVoiceNodeBkgforwardHL.imageset/Contents.json -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/ReceiverVoiceNodeBkgforwardHL.imageset/ReceiverVoiceNodeBkgforwardHL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/ReceiverVoiceNodeBkgforwardHL.imageset/ReceiverVoiceNodeBkgforwardHL@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/ReceiverVoiceNodePlaying.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/ReceiverVoiceNodePlaying.imageset/Contents.json -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/ReceiverVoiceNodePlaying.imageset/ReceiverVoiceNodePlaying@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/ReceiverVoiceNodePlaying.imageset/ReceiverVoiceNodePlaying@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/ReceiverVoiceNodePlaying.imageset/ReceiverVoiceNodePlaying@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/ReceiverVoiceNodePlaying.imageset/ReceiverVoiceNodePlaying@3x.png -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/ReceiverVoiceNodePlaying001.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/ReceiverVoiceNodePlaying001.imageset/Contents.json -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/ReceiverVoiceNodePlaying001.imageset/ReceiverVoiceNodePlaying001@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/ReceiverVoiceNodePlaying001.imageset/ReceiverVoiceNodePlaying001@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/ReceiverVoiceNodePlaying001.imageset/ReceiverVoiceNodePlaying001@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/ReceiverVoiceNodePlaying001.imageset/ReceiverVoiceNodePlaying001@3x.png -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/ReceiverVoiceNodePlaying002.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/ReceiverVoiceNodePlaying002.imageset/Contents.json -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/ReceiverVoiceNodePlaying002.imageset/ReceiverVoiceNodePlaying002@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/ReceiverVoiceNodePlaying002.imageset/ReceiverVoiceNodePlaying002@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/ReceiverVoiceNodePlaying002.imageset/ReceiverVoiceNodePlaying002@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/ReceiverVoiceNodePlaying002.imageset/ReceiverVoiceNodePlaying002@3x.png -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/ReceiverVoiceNodePlaying003.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/ReceiverVoiceNodePlaying003.imageset/Contents.json -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/ReceiverVoiceNodePlaying003.imageset/ReceiverVoiceNodePlaying003@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/ReceiverVoiceNodePlaying003.imageset/ReceiverVoiceNodePlaying003@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/ReceiverVoiceNodePlaying003.imageset/ReceiverVoiceNodePlaying003@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/ReceiverVoiceNodePlaying003.imageset/ReceiverVoiceNodePlaying003@3x.png -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/SenderTextNodeBkg.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/SenderTextNodeBkg.imageset/Contents.json -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/SenderTextNodeBkg.imageset/SenderTextNodeBkg@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/SenderTextNodeBkg.imageset/SenderTextNodeBkg@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/SenderTextNodeBkg.imageset/SenderTextNodeBkg@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/SenderTextNodeBkg.imageset/SenderTextNodeBkg@3x.png -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/SenderTextNodeBkgHL.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/SenderTextNodeBkgHL.imageset/Contents.json -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/SenderTextNodeBkgHL.imageset/SenderTextNodeBkgHL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/SenderTextNodeBkgHL.imageset/SenderTextNodeBkgHL@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/SenderTextNodeBkgHL.imageset/SenderTextNodeBkgHL@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/SenderTextNodeBkgHL.imageset/SenderTextNodeBkgHL@3x.png -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/SenderVoiceNodeBack.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/SenderVoiceNodeBack.imageset/Contents.json -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/SenderVoiceNodeBack.imageset/SenderVoiceNodeBack@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/SenderVoiceNodeBack.imageset/SenderVoiceNodeBack@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/SenderVoiceNodeBack.imageset/SenderVoiceNodeBack@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/SenderVoiceNodeBack.imageset/SenderVoiceNodeBack@3x.png -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/SenderVoiceNodeBkgforward.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/SenderVoiceNodeBkgforward.imageset/Contents.json -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/SenderVoiceNodeBkgforward.imageset/SenderVoiceNodeBkgforward@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/SenderVoiceNodeBkgforward.imageset/SenderVoiceNodeBkgforward@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/SenderVoiceNodeBkgforwardHL.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/SenderVoiceNodeBkgforwardHL.imageset/Contents.json -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/SenderVoiceNodeBkgforwardHL.imageset/SenderVoiceNodeBkgforwardHL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/SenderVoiceNodeBkgforwardHL.imageset/SenderVoiceNodeBkgforwardHL@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/SenderVoiceNodePlaying.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/SenderVoiceNodePlaying.imageset/Contents.json -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/SenderVoiceNodePlaying.imageset/SenderVoiceNodePlaying@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/SenderVoiceNodePlaying.imageset/SenderVoiceNodePlaying@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/SenderVoiceNodePlaying.imageset/SenderVoiceNodePlaying@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/SenderVoiceNodePlaying.imageset/SenderVoiceNodePlaying@3x.png -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/SenderVoiceNodePlaying001.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/SenderVoiceNodePlaying001.imageset/Contents.json -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/SenderVoiceNodePlaying001.imageset/SenderVoiceNodePlaying001@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/SenderVoiceNodePlaying001.imageset/SenderVoiceNodePlaying001@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/SenderVoiceNodePlaying001.imageset/SenderVoiceNodePlaying001@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/SenderVoiceNodePlaying001.imageset/SenderVoiceNodePlaying001@3x.png -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/SenderVoiceNodePlaying002.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/SenderVoiceNodePlaying002.imageset/Contents.json -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/SenderVoiceNodePlaying002.imageset/SenderVoiceNodePlaying002@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/SenderVoiceNodePlaying002.imageset/SenderVoiceNodePlaying002@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/SenderVoiceNodePlaying002.imageset/SenderVoiceNodePlaying002@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/SenderVoiceNodePlaying002.imageset/SenderVoiceNodePlaying002@3x.png -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/SenderVoiceNodePlaying003.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/SenderVoiceNodePlaying003.imageset/Contents.json -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/SenderVoiceNodePlaying003.imageset/SenderVoiceNodePlaying003@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/SenderVoiceNodePlaying003.imageset/SenderVoiceNodePlaying003@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/SenderVoiceNodePlaying003.imageset/SenderVoiceNodePlaying003@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/SenderVoiceNodePlaying003.imageset/SenderVoiceNodePlaying003@3x.png -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/SignUpError.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/SignUpError.imageset/Contents.json -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/SignUpError.imageset/SignUpError@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/SignUpError.imageset/SignUpError@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/ToolViewEmotion.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/ToolViewEmotion.imageset/Contents.json -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/ToolViewEmotion.imageset/ToolViewEmotion@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/ToolViewEmotion.imageset/ToolViewEmotion@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/ToolViewEmotion.imageset/ToolViewEmotion@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/ToolViewEmotion.imageset/ToolViewEmotion@3x.png -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/ToolViewEmotionHL.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/ToolViewEmotionHL.imageset/Contents.json -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/ToolViewEmotionHL.imageset/ToolViewEmotionHL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/ToolViewEmotionHL.imageset/ToolViewEmotionHL@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/ToolViewEmotionHL.imageset/ToolViewEmotionHL@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/ToolViewEmotionHL.imageset/ToolViewEmotionHL@3x.png -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/ToolViewInputVoice.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/ToolViewInputVoice.imageset/Contents.json -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/ToolViewInputVoice.imageset/ToolViewInputVoice@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/ToolViewInputVoice.imageset/ToolViewInputVoice@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/ToolViewInputVoice.imageset/ToolViewInputVoice@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/ToolViewInputVoice.imageset/ToolViewInputVoice@3x.png -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/ToolViewInputVoiceHL.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/ToolViewInputVoiceHL.imageset/Contents.json -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/ToolViewInputVoiceHL.imageset/ToolViewInputVoiceHL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/ToolViewInputVoiceHL.imageset/ToolViewInputVoiceHL@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/ToolViewInputVoiceHL.imageset/ToolViewInputVoiceHL@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/ToolViewInputVoiceHL.imageset/ToolViewInputVoiceHL@3x.png -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/ToolViewKeyboard.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/ToolViewKeyboard.imageset/Contents.json -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/ToolViewKeyboard.imageset/ToolViewKeyboard@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/ToolViewKeyboard.imageset/ToolViewKeyboard@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/ToolViewKeyboard.imageset/ToolViewKeyboard@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/ToolViewKeyboard.imageset/ToolViewKeyboard@3x.png -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/ToolViewKeyboardHL.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/ToolViewKeyboardHL.imageset/Contents.json -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/ToolViewKeyboardHL.imageset/ToolViewKeyboardHL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/ToolViewKeyboardHL.imageset/ToolViewKeyboardHL@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/ToolViewKeyboardHL.imageset/ToolViewKeyboardHL@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/ToolViewKeyboardHL.imageset/ToolViewKeyboardHL@3x.png -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/TypeSelectorBtnHL_Black.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/TypeSelectorBtnHL_Black.imageset/Contents.json -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/TypeSelectorBtnHL_Black.imageset/TypeSelectorBtnHL_Black@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/TypeSelectorBtnHL_Black.imageset/TypeSelectorBtnHL_Black@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/TypeSelectorBtnHL_Black.imageset/TypeSelectorBtnHL_Black@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/TypeSelectorBtnHL_Black.imageset/TypeSelectorBtnHL_Black@3x.png -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/TypeSelectorBtn_Black.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/TypeSelectorBtn_Black.imageset/Contents.json -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/TypeSelectorBtn_Black.imageset/TypeSelectorBtn_Black@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/TypeSelectorBtn_Black.imageset/TypeSelectorBtn_Black@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/TypeSelectorBtn_Black.imageset/TypeSelectorBtn_Black@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/TypeSelectorBtn_Black.imageset/TypeSelectorBtn_Black@3x.png -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/audio/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/audio/Contents.json -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/audio/record_animate_01.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/audio/record_animate_01.imageset/Contents.json -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/audio/record_animate_01.imageset/record_animate_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/audio/record_animate_01.imageset/record_animate_01.png -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/audio/record_animate_01.imageset/record_animate_01@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/audio/record_animate_01.imageset/record_animate_01@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/audio/record_animate_02.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/audio/record_animate_02.imageset/Contents.json -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/audio/record_animate_02.imageset/record_animate_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/audio/record_animate_02.imageset/record_animate_02.png -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/audio/record_animate_02.imageset/record_animate_02@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/audio/record_animate_02.imageset/record_animate_02@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/audio/record_animate_03.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/audio/record_animate_03.imageset/Contents.json -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/audio/record_animate_03.imageset/record_animate_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/audio/record_animate_03.imageset/record_animate_03.png -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/audio/record_animate_03.imageset/record_animate_03@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/audio/record_animate_03.imageset/record_animate_03@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/audio/record_animate_04.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/audio/record_animate_04.imageset/Contents.json -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/audio/record_animate_04.imageset/record_animate_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/audio/record_animate_04.imageset/record_animate_04.png -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/audio/record_animate_04.imageset/record_animate_04@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/audio/record_animate_04.imageset/record_animate_04@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/audio/record_animate_05.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/audio/record_animate_05.imageset/Contents.json -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/audio/record_animate_05.imageset/record_animate_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/audio/record_animate_05.imageset/record_animate_05.png -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/audio/record_animate_05.imageset/record_animate_05@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/audio/record_animate_05.imageset/record_animate_05@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/audio/record_animate_06.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/audio/record_animate_06.imageset/Contents.json -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/audio/record_animate_06.imageset/record_animate_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/audio/record_animate_06.imageset/record_animate_06.png -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/audio/record_animate_06.imageset/record_animate_06@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/audio/record_animate_06.imageset/record_animate_06@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/audio/record_animate_07.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/audio/record_animate_07.imageset/Contents.json -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/audio/record_animate_07.imageset/record_animate_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/audio/record_animate_07.imageset/record_animate_07.png -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/audio/record_animate_07.imageset/record_animate_07@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/audio/record_animate_07.imageset/record_animate_07@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/audio/record_animate_08.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/audio/record_animate_08.imageset/Contents.json -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/audio/record_animate_08.imageset/record_animate_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/audio/record_animate_08.imageset/record_animate_08.png -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/audio/record_animate_08.imageset/record_animate_08@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/audio/record_animate_08.imageset/record_animate_08@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/audio/record_animate_09.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/audio/record_animate_09.imageset/Contents.json -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/audio/record_animate_09.imageset/record_animate_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/audio/record_animate_09.imageset/record_animate_09.png -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/audio/record_animate_09.imageset/record_animate_09@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/audio/record_animate_09.imageset/record_animate_09@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/bg3.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/bg3.imageset/Contents.json -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/bg3.imageset/bg3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/bg3.imageset/bg3.jpg -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/icon.imageset/Contents.json -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/icon.imageset/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/icon.imageset/icon@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/icon.imageset/icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/icon.imageset/icon@3x.png -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/mmplayer_idle.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/mmplayer_idle.imageset/Contents.json -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/mmplayer_idle.imageset/mmplayer_idle@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/mmplayer_idle.imageset/mmplayer_idle@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/mmplayer_idle.imageset/mmplayer_idle@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/mmplayer_idle.imageset/mmplayer_idle@3x.png -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/scan_bl.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/scan_bl.imageset/Contents.json -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/scan_bl.imageset/scan_bl@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/scan_bl.imageset/scan_bl@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/scan_br.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/scan_br.imageset/Contents.json -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/scan_br.imageset/scan_br@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/scan_br.imageset/scan_br@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/scan_line.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/scan_line.imageset/Contents.json -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/scan_line.imageset/scan_line@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/scan_line.imageset/scan_line@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/scan_tl.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/scan_tl.imageset/Contents.json -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/scan_tl.imageset/scan_tl@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/scan_tl.imageset/scan_tl@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/scan_tr.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/scan_tr.imageset/Contents.json -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/scan_tr.imageset/scan_tr@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/scan_tr.imageset/scan_tr@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/shareMore/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/shareMore/Contents.json -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/shareMore/sharemorePay.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/shareMore/sharemorePay.imageset/Contents.json -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/shareMore/sharemorePay.imageset/sharemorePay@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/shareMore/sharemorePay.imageset/sharemorePay@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/shareMore/sharemorePay.imageset/sharemorePay@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/shareMore/sharemorePay.imageset/sharemorePay@3x.png -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/shareMore/sharemore_friendcard.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/shareMore/sharemore_friendcard.imageset/Contents.json -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/shareMore/sharemore_friendcard.imageset/sharemore_friendcard@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/shareMore/sharemore_friendcard.imageset/sharemore_friendcard@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/shareMore/sharemore_friendcard.imageset/sharemore_friendcard@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/shareMore/sharemore_friendcard.imageset/sharemore_friendcard@3x.png -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/shareMore/sharemore_location.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/shareMore/sharemore_location.imageset/Contents.json -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/shareMore/sharemore_location.imageset/sharemore_location@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/shareMore/sharemore_location.imageset/sharemore_location@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/shareMore/sharemore_location.imageset/sharemore_location@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/shareMore/sharemore_location.imageset/sharemore_location@3x.png -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/shareMore/sharemore_myfav.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/shareMore/sharemore_myfav.imageset/Contents.json -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/shareMore/sharemore_myfav.imageset/sharemore_myfav@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/shareMore/sharemore_myfav.imageset/sharemore_myfav@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/shareMore/sharemore_myfav.imageset/sharemore_myfav@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/shareMore/sharemore_myfav.imageset/sharemore_myfav@3x.png -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/shareMore/sharemore_otherDown.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/shareMore/sharemore_otherDown.imageset/Contents.json -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/shareMore/sharemore_otherDown.imageset/sharemore_otherDown@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/shareMore/sharemore_otherDown.imageset/sharemore_otherDown@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/shareMore/sharemore_otherDown.imageset/sharemore_otherDown@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/shareMore/sharemore_otherDown.imageset/sharemore_otherDown@3x.png -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/shareMore/sharemore_otherDown_HL.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/shareMore/sharemore_otherDown_HL.imageset/Contents.json -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/shareMore/sharemore_otherDown_HL.imageset/sharemore_otherDown_HL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/shareMore/sharemore_otherDown_HL.imageset/sharemore_otherDown_HL@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/shareMore/sharemore_otherDown_HL.imageset/sharemore_otherDown_HL@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/shareMore/sharemore_otherDown_HL.imageset/sharemore_otherDown_HL@3x.png -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/shareMore/sharemore_pic.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/shareMore/sharemore_pic.imageset/Contents.json -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/shareMore/sharemore_pic.imageset/sharemore_pic@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/shareMore/sharemore_pic.imageset/sharemore_pic@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/shareMore/sharemore_pic.imageset/sharemore_pic@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/shareMore/sharemore_pic.imageset/sharemore_pic@3x.png -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/shareMore/sharemore_picbg.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/shareMore/sharemore_picbg.imageset/Contents.json -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/shareMore/sharemore_picbg.imageset/sharemore_picbg@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/shareMore/sharemore_picbg.imageset/sharemore_picbg@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/shareMore/sharemore_sight.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/shareMore/sharemore_sight.imageset/Contents.json -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/shareMore/sharemore_sight.imageset/sharemore_sight@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/shareMore/sharemore_sight.imageset/sharemore_sight@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/shareMore/sharemore_sight.imageset/sharemore_sight@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/shareMore/sharemore_sight.imageset/sharemore_sight@3x.png -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/shareMore/sharemore_videovoip.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/shareMore/sharemore_videovoip.imageset/Contents.json -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/shareMore/sharemore_videovoip.imageset/sharemore_videovoip@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/shareMore/sharemore_videovoip.imageset/sharemore_videovoip@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/shareMore/sharemore_videovoip.imageset/sharemore_videovoip@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/shareMore/sharemore_videovoip.imageset/sharemore_videovoip@3x.png -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/shareMore/sharemore_wxtalk.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/shareMore/sharemore_wxtalk.imageset/Contents.json -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/shareMore/sharemore_wxtalk.imageset/sharemore_wxtalk@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/shareMore/sharemore_wxtalk.imageset/sharemore_wxtalk@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/shareMore/sharemore_wxtalk.imageset/sharemore_wxtalk@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/shareMore/sharemore_wxtalk.imageset/sharemore_wxtalk@3x.png -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/share_auth_fail.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/share_auth_fail.imageset/Contents.json -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/share_auth_fail.imageset/share_auth_fail@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/share_auth_fail.imageset/share_auth_fail@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/tabBar/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/tabBar/Contents.json -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/tabBar/tabbar_badge.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/tabBar/tabbar_badge.imageset/Contents.json -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/tabBar/tabbar_badge.imageset/tabbar_badge@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/tabBar/tabbar_badge.imageset/tabbar_badge@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/tabBar/tabbar_badge.imageset/tabbar_badge@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/tabBar/tabbar_badge.imageset/tabbar_badge@3x.png -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/tabBar/tabbar_contacts.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/tabBar/tabbar_contacts.imageset/Contents.json -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/tabBar/tabbar_contacts.imageset/tabbar_contacts@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/tabBar/tabbar_contacts.imageset/tabbar_contacts@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/tabBar/tabbar_contacts.imageset/tabbar_contacts@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/tabBar/tabbar_contacts.imageset/tabbar_contacts@3x.png -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/tabBar/tabbar_contactsHL.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/tabBar/tabbar_contactsHL.imageset/Contents.json -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/tabBar/tabbar_contactsHL.imageset/tabbar_contactsHL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/tabBar/tabbar_contactsHL.imageset/tabbar_contactsHL@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/tabBar/tabbar_contactsHL.imageset/tabbar_contactsHL@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/tabBar/tabbar_contactsHL.imageset/tabbar_contactsHL@3x.png -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/tabBar/tabbar_discover.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/tabBar/tabbar_discover.imageset/Contents.json -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/tabBar/tabbar_discover.imageset/tabbar_discover@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/tabBar/tabbar_discover.imageset/tabbar_discover@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/tabBar/tabbar_discover.imageset/tabbar_discover@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/tabBar/tabbar_discover.imageset/tabbar_discover@3x.png -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/tabBar/tabbar_discoverHL.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/tabBar/tabbar_discoverHL.imageset/Contents.json -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/tabBar/tabbar_discoverHL.imageset/tabbar_discoverHL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/tabBar/tabbar_discoverHL.imageset/tabbar_discoverHL@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/tabBar/tabbar_discoverHL.imageset/tabbar_discoverHL@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/tabBar/tabbar_discoverHL.imageset/tabbar_discoverHL@3x.png -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/tabBar/tabbar_mainframe.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/tabBar/tabbar_mainframe.imageset/Contents.json -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/tabBar/tabbar_mainframe.imageset/tabbar_mainframe@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/tabBar/tabbar_mainframe.imageset/tabbar_mainframe@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/tabBar/tabbar_mainframe.imageset/tabbar_mainframe@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/tabBar/tabbar_mainframe.imageset/tabbar_mainframe@3x.png -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/tabBar/tabbar_mainframeHL.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/tabBar/tabbar_mainframeHL.imageset/Contents.json -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/tabBar/tabbar_mainframeHL.imageset/tabbar_mainframeHL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/tabBar/tabbar_mainframeHL.imageset/tabbar_mainframeHL@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/tabBar/tabbar_mainframeHL.imageset/tabbar_mainframeHL@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/tabBar/tabbar_mainframeHL.imageset/tabbar_mainframeHL@3x.png -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/tabBar/tabbar_me.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/tabBar/tabbar_me.imageset/Contents.json -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/tabBar/tabbar_me.imageset/tabbar_me@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/tabBar/tabbar_me.imageset/tabbar_me@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/tabBar/tabbar_me.imageset/tabbar_me@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/tabBar/tabbar_me.imageset/tabbar_me@3x.png -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/tabBar/tabbar_meHL.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/tabBar/tabbar_meHL.imageset/Contents.json -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/tabBar/tabbar_meHL.imageset/tabbar_meHL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/tabBar/tabbar_meHL.imageset/tabbar_meHL@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/tabBar/tabbar_meHL.imageset/tabbar_meHL@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/tabBar/tabbar_meHL.imageset/tabbar_meHL@3x.png -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/testImage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/testImage/Contents.json -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/testImage/icon0.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/testImage/icon0.imageset/Contents.json -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/testImage/icon0.imageset/icon5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/testImage/icon0.imageset/icon5.png -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/testImage/icon1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/testImage/icon1.imageset/Contents.json -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/testImage/icon1.imageset/icon1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/testImage/icon1.imageset/icon1.png -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/testImage/icon2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/testImage/icon2.imageset/Contents.json -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/testImage/icon2.imageset/icon2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/testImage/icon2.imageset/icon2.png -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/testImage/icon3.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/testImage/icon3.imageset/Contents.json -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/testImage/icon3.imageset/icon3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/testImage/icon3.imageset/icon3.png -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/testImage/icon4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/testImage/icon4.imageset/Contents.json -------------------------------------------------------------------------------- /LGWeChatKit/Assets.xcassets/testImage/icon4.imageset/icon4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Assets.xcassets/testImage/icon4.imageset/icon4.jpg -------------------------------------------------------------------------------- /LGWeChatKit/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /LGWeChatKit/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/Info.plist -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/Extension/CGRectEx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/Extension/CGRectEx.swift -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/Extension/LGColorEx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/Extension/LGColorEx.swift -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/Extension/LGCommonEx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/Extension/LGCommonEx.swift -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/LGConversationViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/LGConversationViewController.swift -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/imagePick/LGAssertGridViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/imagePick/LGAssertGridViewCell.swift -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/imagePick/LGAssetGridViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/imagePick/LGAssetGridViewController.swift -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/imagePick/LGAssetModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/imagePick/LGAssetModel.swift -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/imagePick/LGAssetToolView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/imagePick/LGAssetToolView.swift -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/imagePick/LGAssetViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/imagePick/LGAssetViewCell.swift -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/imagePick/LGAssetViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/imagePick/LGAssetViewController.swift -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/imagePick/LGAssetViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/imagePick/LGAssetViewModel.swift -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/imagePick/LGCollectionViewControllerExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/imagePick/LGCollectionViewControllerExtension.swift -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/imagePick/LGDismissAnimationController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/imagePick/LGDismissAnimationController.swift -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/imagePick/LGImagePickController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/imagePick/LGImagePickController.swift -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/imagePick/LGImagePickModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/imagePick/LGImagePickModel.swift -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/imagePick/LGImagePickViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/imagePick/LGImagePickViewModel.swift -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/imagePick/LGPresentAnimationController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/imagePick/LGPresentAnimationController.swift -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/mapKit/LGMapViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/mapKit/LGMapViewController.swift -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/mapKit/placeAnnotation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/mapKit/placeAnnotation.swift -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/video/LGAVPlayView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/video/LGAVPlayView.swift -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/video/LGRecordVideoModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/video/LGRecordVideoModel.swift -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/video/LGRecordVideoView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/video/LGRecordVideoView.swift -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/video/LGVideoController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/video/LGVideoController.swift -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/BarButton_Red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/BarButton_Red@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/DeleteEmoticonBtn@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/DeleteEmoticonBtn@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_100@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_100@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_101@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_101@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_102@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_102@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_103@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_103@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_104@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_104@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_105@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_105@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_10@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_10@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_11@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_11@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_12@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_12@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_13@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_13@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_14@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_14@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_15@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_15@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_16@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_17@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_17@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_18@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_18@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_19@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_19@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_1@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_20@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_21@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_21@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_22@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_22@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_23@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_23@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_24@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_24@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_25@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_25@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_26@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_26@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_27@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_27@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_28@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_28@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_29@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_2@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_30@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_30@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_31@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_31@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_32@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_33@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_33@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_34@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_34@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_35@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_35@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_36@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_36@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_37@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_37@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_38@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_38@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_39@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_39@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_3@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_3@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_40@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_41@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_41@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_42@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_42@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_43@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_43@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_44@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_44@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_45@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_45@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_46@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_46@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_47@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_47@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_48@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_48@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_49@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_49@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_4@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_4@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_50@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_50@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_51@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_51@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_52@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_52@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_53@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_53@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_54@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_54@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_55@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_55@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_56@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_56@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_57@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_57@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_58@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_58@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_59@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_59@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_5@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_60@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_61@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_61@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_62@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_62@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_63@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_63@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_64@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_64@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_65@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_65@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_66@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_66@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_67@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_67@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_68@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_68@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_69@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_69@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_6@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_6@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_70@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_70@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_71@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_71@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_72@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_72@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_73@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_73@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_74@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_74@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_75@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_75@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_76@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_77@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_77@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_78@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_78@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_79@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_79@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_7@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_7@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_80@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_80@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_81@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_81@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_82@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_82@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_83@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_83@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_84@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_84@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_85@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_85@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_86@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_86@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_87@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_87@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_88@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_88@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_89@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_89@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_8@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_8@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_90@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_90@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_91@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_91@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_92@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_92@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_93@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_93@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_94@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_94@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_95@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_95@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_96@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_96@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_97@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_97@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_98@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_98@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_99@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_99@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_9@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/Expression_9@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/around-friends_keybroad@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/around-friends_keybroad@2x.png -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/emoji_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/view/Emotion/EmotionResource/emoji_config.json -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/view/LGChatBaseCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/view/LGChatBaseCell.swift -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/view/LGChatImageCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/view/LGChatImageCell.swift -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/view/LGChatTextCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/view/LGChatTextCell.swift -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/view/LGChatVideoCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/view/LGChatVideoCell.swift -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/view/LGChatVoiceCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/view/LGChatVoiceCell.swift -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/view/LGEmotionView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/view/LGEmotionView.swift -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/view/LGMoreActionView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/view/LGMoreActionView.swift -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/view/LGRecordIndicatorView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/view/LGRecordIndicatorView.swift -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/view/LGShareMoreView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/view/LGShareMoreView.swift -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/view/LGToolBarView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/view/LGToolBarView.swift -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversion/viewModel/message.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversion/viewModel/message.swift -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversionList/LGConversationListController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversionList/LGConversationListController.swift -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversionList/view/LGButtonView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversionList/view/LGButtonView.swift -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversionList/view/LGConversionListBaseCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversionList/view/LGConversionListBaseCell.swift -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversionList/view/LGConversionListCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversionList/view/LGConversionListCell.swift -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversionList/viewModel/LGConversionList.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversionList/viewModel/LGConversionList.swift -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/conversionList/viewModel/LGConversionListCellModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/conversionList/viewModel/LGConversionListCellModel.swift -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/find/LGFindViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/find/LGFindViewController.swift -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/find/LGScanViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/find/LGScanViewController.swift -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/find/findSB.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/find/findSB.storyboard -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/friend/FriendCellModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/friend/FriendCellModel.swift -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/friend/FriendModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/friend/FriendModel.swift -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/friend/FriendViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/friend/FriendViewModel.swift -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/friend/LGFriendListCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/friend/LGFriendListCell.swift -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/friend/LGFriendViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/friend/LGFriendViewController.swift -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/me/LGMeViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/me/LGMeViewController.swift -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/me/setSB.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/me/setSB.storyboard -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/utilities/LGAudioPlayer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/utilities/LGAudioPlayer.swift -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/utilities/LGAudioRecorder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/utilities/LGAudioRecorder.swift -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/utilities/LGEmotionManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/utilities/LGEmotionManager.swift -------------------------------------------------------------------------------- /LGWeChatKit/LGChatKit/utilities/Observable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/LGChatKit/utilities/Observable.swift -------------------------------------------------------------------------------- /LGWeChatKit/MessageIncoming.aiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/MessageIncoming.aiff -------------------------------------------------------------------------------- /LGWeChatKit/MessageOutgoing.aiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/MessageOutgoing.aiff -------------------------------------------------------------------------------- /LGWeChatKit/test.m4v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKit/test.m4v -------------------------------------------------------------------------------- /LGWeChatKitTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKitTests/Info.plist -------------------------------------------------------------------------------- /LGWeChatKitTests/LGWeChatKitTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKitTests/LGWeChatKitTests.swift -------------------------------------------------------------------------------- /LGWeChatKitUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKitUITests/Info.plist -------------------------------------------------------------------------------- /LGWeChatKitUITests/LGWeChatKitUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LGWeChatKitUITests/LGWeChatKitUITests.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/README.md -------------------------------------------------------------------------------- /gif/friend.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/gif/friend.gif -------------------------------------------------------------------------------- /gif/image.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/gif/image.gif -------------------------------------------------------------------------------- /gif/list.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/gif/list.gif -------------------------------------------------------------------------------- /gif/location.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/gif/location.gif -------------------------------------------------------------------------------- /gif/paste.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/gif/paste.gif -------------------------------------------------------------------------------- /gif/recordVideo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/gif/recordVideo.jpg -------------------------------------------------------------------------------- /gif/scan.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/gif/scan.jpg -------------------------------------------------------------------------------- /gif/video.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/gif/video.gif -------------------------------------------------------------------------------- /gif/voice.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamy0801/LGWeChatKit/HEAD/gif/voice.gif --------------------------------------------------------------------------------