├── .gitignore ├── .gradle └── 3.3 │ ├── taskArtifacts │ ├── fileHashes.bin │ ├── fileSnapshots.bin │ ├── taskArtifacts.bin │ └── taskArtifacts.lock │ └── tasks │ ├── _emoji_compileDebugJavaWithJavac │ ├── localClassSetAnalysis │ │ ├── localClassSetAnalysis.bin │ │ └── localClassSetAnalysis.lock │ └── localJarClasspathSnapshot │ │ ├── localJarClasspathSnapshot.bin │ │ └── localJarClasspathSnapshot.lock │ ├── _emoji_compileReleaseJavaWithJavac │ ├── localClassSetAnalysis │ │ ├── localClassSetAnalysis.bin │ │ └── localClassSetAnalysis.lock │ └── localJarClasspathSnapshot │ │ ├── localJarClasspathSnapshot.bin │ │ └── localJarClasspathSnapshot.lock │ └── _test1_compileDebugJavaWithJavac │ ├── localClassSetAnalysis │ ├── localClassSetAnalysis.bin │ └── localClassSetAnalysis.lock │ └── localJarClasspathSnapshot │ ├── localJarClasspathSnapshot.bin │ └── localJarClasspathSnapshot.lock ├── .idea ├── compiler.xml ├── copyright │ └── profiles_settings.xml ├── encodings.xml ├── gradle.xml ├── misc.xml ├── modules.xml └── runConfigurations.xml ├── LICENSE ├── README.md ├── app-debug.apk ├── app ├── .gitignore ├── build.gradle ├── libs │ ├── MobCommons-2017.0322.0931.jar │ ├── MobTools-2017.0322.0931.jar │ ├── Rong_IMLib.jar │ ├── ShareSDK-Alipay-2.8.2.jar │ ├── ShareSDK-Alipay-Core-2.8.2.jar │ ├── ShareSDK-Alipay-Moments-2.8.2.jar │ ├── ShareSDK-Core-2.8.2.jar │ ├── ShareSDK-Email-2.8.2.jar │ ├── ShareSDK-Facebook-2.8.2.jar │ ├── ShareSDK-QQ-2.8.2.jar │ ├── ShareSDK-QZone-2.8.2.jar │ ├── ShareSDK-ShortMessage-2.8.2.jar │ ├── ShareSDK-SinaWeibo-2.8.2.jar │ ├── ShareSDK-TencentWeibo-2.8.2.jar │ ├── ShareSDK-Twitter-2.8.2.jar │ ├── ShareSDK-Wechat-2.8.2.jar │ ├── ShareSDK-Wechat-Core-2.8.2.jar │ ├── ShareSDK-Wechat-Favorite-2.8.2.jar │ ├── ShareSDK-Wechat-Moments-2.8.2.jar │ ├── TencentLocationSDK_v4.9.7.12_r247861_161205_1104.jar │ ├── TencentMapSDK_Raster_v_1.2.7_51ae0e7.jar │ ├── TencentSearch1.1.3.jar │ ├── alipaySdk-20161129.jar │ ├── arm64-v8a │ │ ├── libRongIMLib.so │ │ └── libtencentloc.so │ ├── armeabi-v7a │ │ ├── libRongIMLib.so │ │ └── libtencentloc.so │ ├── armeabi │ │ ├── libRongIMLib.so │ │ └── libtencentloc.so │ ├── joda-time-2.5-sources.jar │ ├── joda-time-2.5.jar │ ├── pinyin4j-2.5.0.jar │ ├── redpacket-alipay-1.1.2.aar │ ├── volley-1.0.19.jar │ ├── x86 │ │ ├── libRongIMLib.so │ │ └── libtencentloc.so │ └── x86_64 │ │ └── libtencentloc.so ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── lqr │ │ └── wechat │ │ └── ExampleInstrumentedTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── assets │ │ ├── ShareSDK.xml │ │ ├── litepal.xml │ │ ├── open_packet_sound.mp3 │ │ ├── open_packet_sound.wav │ │ └── sticker │ │ │ ├── ajmd.png │ │ │ ├── ajmd │ │ │ ├── ajmd001.png │ │ │ ├── ajmd002.png │ │ │ ├── ajmd003.png │ │ │ ├── ajmd004.png │ │ │ ├── ajmd005.png │ │ │ ├── ajmd006.png │ │ │ ├── ajmd007.png │ │ │ ├── ajmd008.png │ │ │ ├── ajmd009.png │ │ │ ├── ajmd010.png │ │ │ ├── ajmd011.png │ │ │ ├── ajmd012.png │ │ │ ├── ajmd013.png │ │ │ ├── ajmd014.png │ │ │ ├── ajmd015.png │ │ │ ├── ajmd016.png │ │ │ ├── ajmd017.png │ │ │ ├── ajmd018.png │ │ │ ├── ajmd019.png │ │ │ ├── ajmd020.png │ │ │ ├── ajmd021.png │ │ │ ├── ajmd022.png │ │ │ ├── ajmd023.png │ │ │ ├── ajmd024.png │ │ │ ├── ajmd025.png │ │ │ ├── ajmd026.png │ │ │ ├── ajmd027.png │ │ │ ├── ajmd028.png │ │ │ ├── ajmd029.png │ │ │ ├── ajmd030.png │ │ │ ├── ajmd031.png │ │ │ ├── ajmd032.png │ │ │ ├── ajmd033.png │ │ │ ├── ajmd034.png │ │ │ ├── ajmd035.png │ │ │ ├── ajmd036.png │ │ │ ├── ajmd037.png │ │ │ ├── ajmd038.png │ │ │ ├── ajmd039.png │ │ │ ├── ajmd040.png │ │ │ ├── ajmd041.png │ │ │ ├── ajmd042.png │ │ │ ├── ajmd043.png │ │ │ ├── ajmd044.png │ │ │ ├── ajmd045.png │ │ │ ├── ajmd046.png │ │ │ ├── ajmd047.png │ │ │ └── ajmd048.png │ │ │ ├── lt.png │ │ │ ├── lt │ │ │ ├── lt001.png │ │ │ ├── lt002.png │ │ │ ├── lt003.png │ │ │ ├── lt004.png │ │ │ ├── lt005.png │ │ │ ├── lt006.png │ │ │ ├── lt007.png │ │ │ ├── lt008.png │ │ │ ├── lt009.png │ │ │ ├── lt010.png │ │ │ ├── lt011.png │ │ │ ├── lt012.png │ │ │ ├── lt013.png │ │ │ ├── lt014.png │ │ │ ├── lt015.png │ │ │ ├── lt016.png │ │ │ ├── lt017.png │ │ │ ├── lt018.png │ │ │ ├── lt019.png │ │ │ └── lt020.png │ │ │ ├── tsj.png │ │ │ ├── tsj │ │ │ ├── tsj_00.gif │ │ │ ├── tsj_01.gif │ │ │ ├── tsj_02.gif │ │ │ ├── tsj_03.gif │ │ │ ├── tsj_04.gif │ │ │ ├── tsj_05.gif │ │ │ ├── tsj_06.gif │ │ │ ├── tsj_07.gif │ │ │ ├── tsj_08.gif │ │ │ ├── tsj_09.gif │ │ │ ├── tsj_10.gif │ │ │ ├── tsj_11.gif │ │ │ ├── tsj_12.gif │ │ │ ├── tsj_13.gif │ │ │ ├── tsj_14.gif │ │ │ └── tsj_15.gif │ │ │ ├── xxy.png │ │ │ └── xxy │ │ │ ├── xxy001.png │ │ │ ├── xxy002.png │ │ │ ├── xxy003.png │ │ │ ├── xxy004.png │ │ │ ├── xxy005.png │ │ │ ├── xxy006.png │ │ │ ├── xxy007.png │ │ │ ├── xxy008.png │ │ │ ├── xxy009.png │ │ │ ├── xxy010.png │ │ │ ├── xxy011.png │ │ │ ├── xxy012.png │ │ │ ├── xxy013.png │ │ │ ├── xxy014.png │ │ │ ├── xxy015.png │ │ │ ├── xxy016.png │ │ │ ├── xxy017.png │ │ │ ├── xxy018.png │ │ │ ├── xxy019.png │ │ │ ├── xxy020.png │ │ │ ├── xxy021.png │ │ │ ├── xxy022.png │ │ │ ├── xxy023.png │ │ │ ├── xxy024.png │ │ │ ├── xxy025.png │ │ │ ├── xxy026.png │ │ │ ├── xxy027.png │ │ │ ├── xxy028.png │ │ │ ├── xxy029.png │ │ │ ├── xxy030.png │ │ │ ├── xxy031.png │ │ │ ├── xxy032.png │ │ │ ├── xxy033.png │ │ │ ├── xxy034.png │ │ │ ├── xxy035.png │ │ │ ├── xxy036.png │ │ │ ├── xxy037.png │ │ │ ├── xxy038.png │ │ │ ├── xxy039.png │ │ │ └── xxy040.png │ ├── java │ │ ├── cn │ │ │ └── sharesdk │ │ │ │ └── onekeyshare │ │ │ │ ├── CustomerLogo.java │ │ │ │ ├── OnekeyShare.java │ │ │ │ ├── OnekeySharePage.java │ │ │ │ ├── OnekeyShareTheme.java │ │ │ │ ├── OnekeyShareThemeImpl.java │ │ │ │ ├── ShareContentCustomizeCallback.java │ │ │ │ └── themes │ │ │ │ └── classic │ │ │ │ ├── ClassicTheme.java │ │ │ │ ├── EditPage.java │ │ │ │ ├── FriendAdapter.java │ │ │ │ ├── FriendListItem.java │ │ │ │ ├── FriendListPage.java │ │ │ │ ├── IndicatorView.java │ │ │ │ ├── PRTHeader.java │ │ │ │ ├── PicViewerPage.java │ │ │ │ ├── PlatformPage.java │ │ │ │ ├── PlatformPageAdapter.java │ │ │ │ ├── RotateImageView.java │ │ │ │ ├── XView.java │ │ │ │ ├── land │ │ │ │ ├── EditPageLand.java │ │ │ │ ├── FriendListPageLand.java │ │ │ │ ├── PlatformPageAdapterLand.java │ │ │ │ └── PlatformPageLand.java │ │ │ │ └── port │ │ │ │ ├── EditPagePort.java │ │ │ │ ├── FriendListPagePort.java │ │ │ │ ├── PlatformPageAdapterPort.java │ │ │ │ └── PlatformPagePort.java │ │ └── com │ │ │ └── lqr │ │ │ └── wechat │ │ │ ├── api │ │ │ ├── ApiRetrofit.java │ │ │ ├── MyApi.java │ │ │ ├── base │ │ │ │ ├── BaseApiRetrofit.java │ │ │ │ └── persistentcookiejar │ │ │ │ │ ├── ClearableCookieJar.java │ │ │ │ │ ├── PersistentCookieJar.java │ │ │ │ │ ├── cache │ │ │ │ │ ├── CookieCache.java │ │ │ │ │ ├── IdentifiableCookie.java │ │ │ │ │ └── SetCookieCache.java │ │ │ │ │ └── persistence │ │ │ │ │ ├── CookiePersistor.java │ │ │ │ │ ├── SerializableCookie.java │ │ │ │ │ └── SharedPrefsCookiePersistor.java │ │ │ └── redpacket │ │ │ │ └── SignService.java │ │ │ ├── app │ │ │ ├── AppConst.java │ │ │ ├── MyApp.java │ │ │ └── base │ │ │ │ └── BaseApp.java │ │ │ ├── apshare │ │ │ └── ShareEntryActivity.java │ │ │ ├── db │ │ │ ├── DBManager.java │ │ │ └── model │ │ │ │ ├── Friend.java │ │ │ │ ├── GroupMember.java │ │ │ │ └── Groups.java │ │ │ ├── manager │ │ │ ├── BroadcastManager.java │ │ │ └── JsonMananger.java │ │ │ ├── model │ │ │ ├── cache │ │ │ │ └── UserCache.java │ │ │ ├── data │ │ │ │ ├── GetGroupMemberModel.java │ │ │ │ ├── GroupNotificationMessageData.java │ │ │ │ └── LocationData.java │ │ │ ├── exception │ │ │ │ └── ServerException.java │ │ │ ├── message │ │ │ │ ├── DeleteContactMessage.java │ │ │ │ └── RedPacketMessage.java │ │ │ ├── redpacket │ │ │ │ └── SignModel.java │ │ │ ├── request │ │ │ │ ├── AddGroupMemberRequest.java │ │ │ │ ├── AddToBlackListRequest.java │ │ │ │ ├── AgreeFriendsRequest.java │ │ │ │ ├── ChangePasswordRequest.java │ │ │ │ ├── CheckPhoneRequest.java │ │ │ │ ├── CreateGroupRequest.java │ │ │ │ ├── DeleteFriendRequest.java │ │ │ │ ├── DeleteGroupMemberRequest.java │ │ │ │ ├── DismissGroupRequest.java │ │ │ │ ├── FriendInvitationRequest.java │ │ │ │ ├── GetUserInfosRequest.java │ │ │ │ ├── JoinGroupRequest.java │ │ │ │ ├── LoginRequest.java │ │ │ │ ├── QuitGroupRequest.java │ │ │ │ ├── RegisterRequest.java │ │ │ │ ├── RemoveFromBlacklistRequest.java │ │ │ │ ├── RestPasswordRequest.java │ │ │ │ ├── SendCodeRequest.java │ │ │ │ ├── SetFriendDisplayNameRequest.java │ │ │ │ ├── SetGroupDisplayNameRequest.java │ │ │ │ ├── SetGroupNameRequest.java │ │ │ │ ├── SetGroupPortraitRequest.java │ │ │ │ ├── SetNameRequest.java │ │ │ │ ├── SetPortraitRequest.java │ │ │ │ ├── UpLoadImageRequest.java │ │ │ │ └── VerifyCodeRequest.java │ │ │ └── response │ │ │ │ ├── AddGroupMemberResponse.java │ │ │ │ ├── AddToBlackListResponse.java │ │ │ │ ├── AgreeFriendsResponse.java │ │ │ │ ├── ChangePasswordResponse.java │ │ │ │ ├── CheckPhoneResponse.java │ │ │ │ ├── ContactNotificationMessageData.java │ │ │ │ ├── CreateGroupResponse.java │ │ │ │ ├── DefaultConversationResponse.java │ │ │ │ ├── DeleteFriendResponse.java │ │ │ │ ├── DeleteGroupMemberResponse.java │ │ │ │ ├── DismissGroupResponse.java │ │ │ │ ├── FriendInvitationResponse.java │ │ │ │ ├── GetBlackListResponse.java │ │ │ │ ├── GetFriendInfoByIDResponse.java │ │ │ │ ├── GetGroupInfoResponse.java │ │ │ │ ├── GetGroupMemberResponse.java │ │ │ │ ├── GetGroupResponse.java │ │ │ │ ├── GetTokenResponse.java │ │ │ │ ├── GetUserInfoByIdResponse.java │ │ │ │ ├── GetUserInfoByPhoneResponse.java │ │ │ │ ├── GetUserInfosResponse.java │ │ │ │ ├── JoinGroupResponse.java │ │ │ │ ├── LoginResponse.java │ │ │ │ ├── QiNiuTokenResponse.java │ │ │ │ ├── QuitGroupResponse.java │ │ │ │ ├── RegisterResponse.java │ │ │ │ ├── RemoveFromBlackListResponse.java │ │ │ │ ├── RestPasswordResponse.java │ │ │ │ ├── SendCodeResponse.java │ │ │ │ ├── SetFriendDisplayNameResponse.java │ │ │ │ ├── SetGroupDisplayNameResponse.java │ │ │ │ ├── SetGroupNameResponse.java │ │ │ │ ├── SetGroupPortraitResponse.java │ │ │ │ ├── SetNameResponse.java │ │ │ │ ├── SetPortraitResponse.java │ │ │ │ ├── SyncTotalDataResponse.java │ │ │ │ ├── UserRelationshipResponse.java │ │ │ │ ├── VerifyCodeResponse.java │ │ │ │ └── VersionResponse.java │ │ │ ├── sdk │ │ │ └── RongCloudSDK.java │ │ │ ├── thread │ │ │ ├── ThreadPoolFactory.java │ │ │ └── ThreadPoolProxy.java │ │ │ ├── ui │ │ │ ├── activity │ │ │ │ ├── AboutActivity.java │ │ │ │ ├── AddFriendActivity.java │ │ │ │ ├── ChangeMyNameActivity.java │ │ │ │ ├── CreateGroupActivity.java │ │ │ │ ├── FriendCircleActivity.java │ │ │ │ ├── GroupListActivity.java │ │ │ │ ├── LoginActivity.java │ │ │ │ ├── MainActivity.java │ │ │ │ ├── MyInfoActivity.java │ │ │ │ ├── MyLocationActivity.java │ │ │ │ ├── NewFriendActivity.java │ │ │ │ ├── PostScriptActivity.java │ │ │ │ ├── QRCodeCardActivity.java │ │ │ │ ├── RegisterActivity.java │ │ │ │ ├── RemoveGroupMemberActivity.java │ │ │ │ ├── ScanActivity.java │ │ │ │ ├── SearchUserActivity.java │ │ │ │ ├── SessionActivity.java │ │ │ │ ├── SessionInfoActivity.java │ │ │ │ ├── SetAliasActivity.java │ │ │ │ ├── SetGroupNameActivity.java │ │ │ │ ├── SettingActivity.java │ │ │ │ ├── ShowBigImageActivity.java │ │ │ │ ├── SplashActivity.java │ │ │ │ ├── TakePhotoActivity.java │ │ │ │ ├── UserInfoActivity.java │ │ │ │ └── WebViewActivity.java │ │ │ ├── adapter │ │ │ │ ├── CommonFragmentPagerAdapter.java │ │ │ │ └── SessionAdapter.java │ │ │ ├── base │ │ │ │ ├── BaseActivity.java │ │ │ │ ├── BaseFragment.java │ │ │ │ ├── BaseFragmentActivity.java │ │ │ │ ├── BaseFragmentPresenter.java │ │ │ │ └── BasePresenter.java │ │ │ ├── fragment │ │ │ │ ├── ContactsFragment.java │ │ │ │ ├── DiscoveryFragment.java │ │ │ │ ├── FragmentFactory.java │ │ │ │ ├── MeFragment.java │ │ │ │ └── RecentMessageFragment.java │ │ │ ├── presenter │ │ │ │ ├── AddFriendAtPresenter.java │ │ │ │ ├── ContactsFgPresenter.java │ │ │ │ ├── CreateGroupAtPresenter.java │ │ │ │ ├── DiscoveryFgPresenter.java │ │ │ │ ├── FriendCircleAtPresenter.java │ │ │ │ ├── GroupListAtPresenter.java │ │ │ │ ├── LoginAtPresenter.java │ │ │ │ ├── MainAtPresenter.java │ │ │ │ ├── MeFgPresenter.java │ │ │ │ ├── MyInfoAtPresenter.java │ │ │ │ ├── MyLocationAtPresenter.java │ │ │ │ ├── NewFriendAtPresenter.java │ │ │ │ ├── PostScriptAtPresenter.java │ │ │ │ ├── RecentMessageFgPresenter.java │ │ │ │ ├── RegisterAtPresenter.java │ │ │ │ ├── ScanAtPresenter.java │ │ │ │ ├── SearchUserAtPresenter.java │ │ │ │ ├── SessionAtPresenter.java │ │ │ │ └── SessionInfoAtPresenter.java │ │ │ └── view │ │ │ │ ├── IAddFriendAtView.java │ │ │ │ ├── IContactsFgView.java │ │ │ │ ├── ICreateGroupAtView.java │ │ │ │ ├── IDiscoveryFgView.java │ │ │ │ ├── IFriendCircleAtView.java │ │ │ │ ├── IGroupListAtView.java │ │ │ │ ├── ILoginAtView.java │ │ │ │ ├── IMainAtView.java │ │ │ │ ├── IMeFgView.java │ │ │ │ ├── IMyInfoAtView.java │ │ │ │ ├── IMyLocationAtView.java │ │ │ │ ├── INewFriendAtView.java │ │ │ │ ├── IPostScriptAtView.java │ │ │ │ ├── IRecentMessageFgView.java │ │ │ │ ├── IRegisterAtView.java │ │ │ │ ├── IScanAtView.java │ │ │ │ ├── ISearchUserAtView.java │ │ │ │ ├── ISessionAtView.java │ │ │ │ └── ISessionInfoAtView.java │ │ │ ├── util │ │ │ ├── FileOpenUtils.java │ │ │ ├── FileUtils.java │ │ │ ├── IOUtils.java │ │ │ ├── ImageUtils.java │ │ │ ├── LogUtils.java │ │ │ ├── MD5Utils.java │ │ │ ├── MediaFileUtils.java │ │ │ ├── MimeTypeUtils.java │ │ │ ├── NetUtils.java │ │ │ ├── PinyinUtils.java │ │ │ ├── PopupWindowUtils.java │ │ │ ├── RedPacketUtil.java │ │ │ ├── RegularUtils.java │ │ │ ├── RongGenerate.java │ │ │ ├── SPUtils.java │ │ │ ├── SortUtils.java │ │ │ ├── StringUtils.java │ │ │ ├── TimeUtils.java │ │ │ ├── UIUtils.java │ │ │ └── VideoThumbLoader.java │ │ │ ├── widget │ │ │ ├── AutoCardView.java │ │ │ ├── AutoToolbar.java │ │ │ ├── BubbleImageView.java │ │ │ ├── CircularProgressBar.java │ │ │ ├── CustomDialog.java │ │ │ ├── FriendRefreshView.java │ │ │ ├── OnDetectScrollListener.java │ │ │ ├── ProgressWebView.java │ │ │ └── QuickIndexBar.java │ │ │ └── wxapi │ │ │ └── WXEntryActivity.java │ └── res │ │ ├── anim │ │ ├── slide_left_in.xml │ │ ├── slide_left_out.xml │ │ ├── slide_right_in.xml │ │ └── slide_right_out.xml │ │ ├── color │ │ └── selector_login_btn.xml │ │ ├── drawable-hdpi │ │ └── ssdk_oks_ptr_ptr.png │ │ ├── drawable-xhdpi │ │ ├── ssdk_auth_title_back.png │ │ ├── ssdk_back_arr.png │ │ ├── ssdk_logo.png │ │ ├── ssdk_oks_classic_alipay.png │ │ ├── ssdk_oks_classic_alipaymoments.png │ │ ├── ssdk_oks_classic_bluetooth.png │ │ ├── ssdk_oks_classic_check_checked.png │ │ ├── ssdk_oks_classic_check_default.png │ │ ├── ssdk_oks_classic_dingding.png │ │ ├── ssdk_oks_classic_douban.png │ │ ├── ssdk_oks_classic_dropbox.png │ │ ├── ssdk_oks_classic_email.png │ │ ├── ssdk_oks_classic_evernote.png │ │ ├── ssdk_oks_classic_facebook.png │ │ ├── ssdk_oks_classic_facebookmessenger.png │ │ ├── ssdk_oks_classic_flickr.png │ │ ├── ssdk_oks_classic_foursquare.png │ │ ├── ssdk_oks_classic_googleplus.png │ │ ├── ssdk_oks_classic_instagram.png │ │ ├── ssdk_oks_classic_instapaper.png │ │ ├── ssdk_oks_classic_kaixin.png │ │ ├── ssdk_oks_classic_kakaostory.png │ │ ├── ssdk_oks_classic_kakaotalk.png │ │ ├── ssdk_oks_classic_laiwang.png │ │ ├── ssdk_oks_classic_laiwangmoments.png │ │ ├── ssdk_oks_classic_line.png │ │ ├── ssdk_oks_classic_linkedin.png │ │ ├── ssdk_oks_classic_meipai.png │ │ ├── ssdk_oks_classic_mingdao.png │ │ ├── ssdk_oks_classic_pinterest.png │ │ ├── ssdk_oks_classic_pocket.png │ │ ├── ssdk_oks_classic_qq.png │ │ ├── ssdk_oks_classic_qzone.png │ │ ├── ssdk_oks_classic_renren.png │ │ ├── ssdk_oks_classic_shortmessage.png │ │ ├── ssdk_oks_classic_sinaweibo.png │ │ ├── ssdk_oks_classic_tencentweibo.png │ │ ├── ssdk_oks_classic_tumblr.png │ │ ├── ssdk_oks_classic_twitter.png │ │ ├── ssdk_oks_classic_vkontakte.png │ │ ├── ssdk_oks_classic_wechat.png │ │ ├── ssdk_oks_classic_wechatfavorite.png │ │ ├── ssdk_oks_classic_wechatmoments.png │ │ ├── ssdk_oks_classic_whatsapp.png │ │ ├── ssdk_oks_classic_yixin.png │ │ ├── ssdk_oks_classic_yixinmoments.png │ │ ├── ssdk_oks_classic_youdao.png │ │ ├── ssdk_oks_classic_youtube.png │ │ └── ssdk_title_div.png │ │ ├── drawable │ │ ├── audio_animation_left_list.xml │ │ ├── audio_animation_right_list.xml │ │ ├── bg_voice_popup.9.png │ │ ├── bg_white.xml │ │ ├── checkbox_style.xml │ │ ├── corner_voice_style.xml │ │ ├── dialog_waiting.xml │ │ ├── ic_camera_enhance_black_24dp.xml │ │ ├── img_bubble_receive.9.png │ │ ├── img_bubble_send.9.png │ │ ├── img_file_receive.9.png │ │ ├── img_file_send.9.png │ │ ├── img_location_receive.9.png │ │ ├── img_location_send.9.png │ │ ├── ios_back_drawable.xml │ │ ├── ios_thumb_selector.xml │ │ ├── progressbar_webview.xml │ │ ├── rp_receive.9.png │ │ ├── rp_send.9.png │ │ ├── selector_edit_focus.xml │ │ ├── selector_login_btn.xml │ │ ├── selector_option_item.xml │ │ ├── selector_register_send_code.xml │ │ ├── selector_session_func.xml │ │ ├── shadow.9.png │ │ ├── shape_bottom_gray.xml │ │ ├── shape_bottom_green.xml │ │ ├── shape_btn_delete.xml │ │ ├── shape_contact_letter_bg.xml │ │ ├── shape_corner_rect_solid_gray.xml │ │ ├── shape_corner_rect_solid_white.xml │ │ ├── shape_dot_horizontal_line.xml │ │ ├── shape_dot_vertical_line.xml │ │ ├── shape_horizontal_line.xml │ │ ├── shape_new_friend_agree.xml │ │ ├── shape_notification_bg.xml │ │ ├── shape_red_dot.xml │ │ ├── shape_register_send_code_disable.xml │ │ ├── shape_register_send_code_enable.xml │ │ ├── shape_session_btn_send.xml │ │ ├── shape_session_btn_voice_normal.xml │ │ ├── shape_session_btn_voice_press.xml │ │ ├── shape_session_func_normal_bg.xml │ │ ├── shape_session_func_press_bg.xml │ │ ├── shape_splash_login.xml │ │ ├── shape_splash_register.xml │ │ ├── shape_toolbar_btn_send.xml │ │ ├── shape_user_info_add_to_contact.xml │ │ ├── shape_user_info_send_msg.xml │ │ ├── shape_vertical_line.xml │ │ ├── ssdk_oks_classic_platform_cell_back.xml │ │ └── ssdk_oks_classic_progressbar.xml │ │ ├── layout │ │ ├── activity_about.xml │ │ ├── activity_add_friend.xml │ │ ├── activity_change_name.xml │ │ ├── activity_create_group.xml │ │ ├── activity_friend_circle.xml │ │ ├── activity_group_list.xml │ │ ├── activity_group_name_set.xml │ │ ├── activity_login.xml │ │ ├── activity_main.xml │ │ ├── activity_my_info.xml │ │ ├── activity_my_location.xml │ │ ├── activity_new_friend.xml │ │ ├── activity_postscript.xml │ │ ├── activity_qr_code_card.xml │ │ ├── activity_register.xml │ │ ├── activity_remove_group_member.xml │ │ ├── activity_scan.xml │ │ ├── activity_search_user.xml │ │ ├── activity_session.xml │ │ ├── activity_session_info.xml │ │ ├── activity_set_alias.xml │ │ ├── activity_setting.xml │ │ ├── activity_show_big_image.xml │ │ ├── activity_splash.xml │ │ ├── activity_take_photo.xml │ │ ├── activity_user_info.xml │ │ ├── activity_webview.xml │ │ ├── dialog_conversation_menu.xml │ │ ├── dialog_exit.xml │ │ ├── dialog_group_display_name_change.xml │ │ ├── dialog_session_menu.xml │ │ ├── dialog_waiting.xml │ │ ├── fragment_contacts.xml │ │ ├── fragment_discovery.xml │ │ ├── fragment_me.xml │ │ ├── fragment_recent_message.xml │ │ ├── header_group_cheat.xml │ │ ├── header_rv_contacts.xml │ │ ├── include_func_layout.xml │ │ ├── include_qrcode_card.xml │ │ ├── include_toolbar.xml │ │ ├── item_audio_receive.xml │ │ ├── item_audio_send.xml │ │ ├── item_contact.xml │ │ ├── item_image_receive.xml │ │ ├── item_image_send.xml │ │ ├── item_location_poi.xml │ │ ├── item_location_receive.xml │ │ ├── item_location_send.xml │ │ ├── item_member_info.xml │ │ ├── item_new_friends.xml │ │ ├── item_no_support_msg_type.xml │ │ ├── item_notification.xml │ │ ├── item_recent_message.xml │ │ ├── item_red_packet_receive.xml │ │ ├── item_red_packet_send.xml │ │ ├── item_selected_contact.xml │ │ ├── item_sticker_receive.xml │ │ ├── item_sticker_send.xml │ │ ├── item_text_receive.xml │ │ ├── item_text_send.xml │ │ ├── item_video_receive.xml │ │ ├── item_video_send.xml │ │ ├── list_head_layout.xml │ │ ├── menu_main.xml │ │ └── popup_audio_wi_vo.xml │ │ ├── mipmap-hdpi │ │ ├── _bg_from_hongbao.png │ │ ├── _bg_to_hongbao.png │ │ ├── audio_animation_left.png │ │ ├── audio_animation_list_left_1.png │ │ ├── audio_animation_list_left_2.png │ │ ├── audio_animation_list_left_3.png │ │ ├── audio_animation_list_right_1.png │ │ ├── audio_animation_list_right_2.png │ │ ├── audio_animation_list_right_3.png │ │ ├── audio_animation_right.png │ │ ├── avatar_def.png │ │ ├── bg_unread.png │ │ ├── btn_location.png │ │ ├── contacts_normal.png │ │ ├── contacts_press.png │ │ ├── default_header.jpg │ │ ├── default_img.png │ │ ├── default_img_failed.png │ │ ├── default_location.png │ │ ├── discovery_normal.png │ │ ├── discovery_press.png │ │ ├── ic_add.png │ │ ├── ic_add_friend.png │ │ ├── ic_add_team_member.png │ │ ├── ic_around_blue.png │ │ ├── ic_back.png │ │ ├── ic_card_pack.png │ │ ├── ic_card_pack1.png │ │ ├── ic_cheat_add.png │ │ ├── ic_cheat_emo.png │ │ ├── ic_cheat_keyboard.png │ │ ├── ic_cheat_voice.png │ │ ├── ic_computer.png │ │ ├── ic_create_group_cheat.png │ │ ├── ic_delete.png │ │ ├── ic_delete_white.png │ │ ├── ic_emo_yellow.png │ │ ├── ic_excel.png │ │ ├── ic_exit_account.png │ │ ├── ic_exit_app.png │ │ ├── ic_file.png │ │ ├── ic_file_wall_collect_gray.png │ │ ├── ic_file_wall_collect_white.png │ │ ├── ic_file_wall_del_gray.png │ │ ├── ic_file_wall_del_white.png │ │ ├── ic_file_wall_share_gray.png │ │ ├── ic_file_wall_share_white.png │ │ ├── ic_friend_circle.png │ │ ├── ic_friend_circle_gray.png │ │ ├── ic_friend_complain.png │ │ ├── ic_friend_delete.png │ │ ├── ic_friend_female.png │ │ ├── ic_friend_forbid.png │ │ ├── ic_friend_male.png │ │ ├── ic_friend_more.png │ │ ├── ic_friend_remark.png │ │ ├── ic_friend_search_gray.png │ │ ├── ic_friend_search_green.png │ │ ├── ic_friend_share.png │ │ ├── ic_friend_start.png │ │ ├── ic_friend_to_desktop.png │ │ ├── ic_func_business_card.png │ │ ├── ic_func_collectioin.png │ │ ├── ic_func_location.png │ │ ├── ic_func_pic.png │ │ ├── ic_func_record.png │ │ ├── ic_func_red_pack.png │ │ ├── ic_func_red_packet.png │ │ ├── ic_func_shot.png │ │ ├── ic_func_transfer.png │ │ ├── ic_func_video.png │ │ ├── ic_func_voice.png │ │ ├── ic_game.png │ │ ├── ic_gender_female.png │ │ ├── ic_gender_male.png │ │ ├── ic_group_cheat.png │ │ ├── ic_help_feedback.png │ │ ├── ic_huanlin.png │ │ ├── ic_launcher.png │ │ ├── ic_new_friend.png │ │ ├── ic_offical.png │ │ ├── ic_payment_received.png │ │ ├── ic_photo_blue.png │ │ ├── ic_photo_blue1.png │ │ ├── ic_player_mode_video_wall.png │ │ ├── ic_ppt.png │ │ ├── ic_qr_code.png │ │ ├── ic_question.png │ │ ├── ic_radar.png │ │ ├── ic_remove_team_member.png │ │ ├── ic_scan.png │ │ ├── ic_scan_blue.png │ │ ├── ic_scan_white.png │ │ ├── ic_search.png │ │ ├── ic_search1.png │ │ ├── ic_search2.png │ │ ├── ic_search3.png │ │ ├── ic_see_pwd.png │ │ ├── ic_sellection.png │ │ ├── ic_sellection1.png │ │ ├── ic_session_info.png │ │ ├── ic_setting_blue.png │ │ ├── ic_shake_blue.png │ │ ├── ic_shop_red.png │ │ ├── ic_sound_tip_close.png │ │ ├── ic_sound_tip_open.png │ │ ├── ic_tag.png │ │ ├── ic_volume_0.png │ │ ├── ic_volume_1.png │ │ ├── ic_volume_2.png │ │ ├── ic_volume_3.png │ │ ├── ic_volume_4.png │ │ ├── ic_volume_5.png │ │ ├── ic_volume_6.png │ │ ├── ic_volume_7.png │ │ ├── ic_volume_8.png │ │ ├── ic_volume_cancel.png │ │ ├── ic_volume_wraning.png │ │ ├── ic_wallet_blue.png │ │ ├── ic_wallet_blue1.png │ │ ├── ic_word.png │ │ ├── ic_zip.png │ │ ├── img_error.png │ │ ├── img_video_default.png │ │ ├── img_video_play_session.png │ │ ├── img_weixin.png │ │ ├── img_weixin_small.png │ │ ├── list_selected.png │ │ ├── list_unselected.png │ │ ├── me_normal.png │ │ ├── me_press.png │ │ ├── message_normal.png │ │ ├── message_press.png │ │ ├── nim_image_download_failed.jpg │ │ ├── rainbow_ic.png │ │ └── splash.jpg │ │ ├── mipmap-xxhdpi │ │ ├── abo.png │ │ ├── abv.png │ │ ├── abw.png │ │ ├── abz.png │ │ ├── acp.png │ │ ├── ah6.png │ │ ├── ah7.png │ │ ├── ah8.png │ │ ├── ale.png │ │ ├── alf.png │ │ ├── alh.png │ │ ├── ali.png │ │ ├── alj.png │ │ ├── alk.png │ │ ├── all.png │ │ ├── alm.png │ │ ├── aln.png │ │ ├── arm.png │ │ ├── checkbox_checked.png │ │ ├── checkbox_checked_disable.png │ │ ├── checkbox_normal_black.png │ │ ├── checkbox_normal_white.png │ │ ├── contacts_normal.png │ │ ├── contacts_press.png │ │ ├── da.jpg │ │ ├── dialog_toast_bg.png │ │ ├── discovery_normal.png │ │ ├── discovery_press.png │ │ ├── ic_phone.png │ │ ├── ios_thumb.png │ │ ├── ios_thumb_disable.png │ │ ├── loc.png │ │ ├── me_normal.png │ │ ├── me_press.png │ │ ├── message_normal.png │ │ ├── message_press.png │ │ ├── navigation.png │ │ ├── schedule_end_icon.png │ │ ├── star.png │ │ ├── startwo.png │ │ ├── toast_bg.png │ │ └── zf.png │ │ ├── values-en │ │ ├── rc_string.xml │ │ ├── ssdk_oks_strings.xml │ │ └── ssdk_strings.xml │ │ ├── values-sw │ │ └── rc_notification_string.xml │ │ └── values │ │ ├── biv_attrs.xml │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── rc_configuration.xml │ │ ├── rc_lib_string.xml │ │ ├── ssdk_instapaper_strings.xml │ │ ├── ssdk_oks_color_drawables.xml │ │ ├── ssdk_oks_strings.xml │ │ ├── ssdk_strings.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── test │ └── java │ └── com │ └── lqr │ └── wechat │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── screenshots ├── 1.gif ├── 10.gif ├── 11.gif ├── 12.gif ├── 13.gif ├── 14.gif ├── 2.gif ├── 3.gif ├── 4.gif ├── 5.gif ├── 6.gif ├── 7.gif ├── 8.gif ├── 9.gif ├── alipay.png └── wechat_pay.png └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- 1 | # built application files 2 | # *.apk 3 | *.ap_ 4 | 5 | # files for the dex VM 6 | *.dex 7 | 8 | # Java class files 9 | *.class 10 | 11 | # generated files 12 | bin/ 13 | gen/ 14 | build/ 15 | 16 | # Local configuration file (sdk path, etc) 17 | local.properties 18 | 19 | # Eclipse project files 20 | .classpath 21 | .project 22 | 23 | # Proguard folder generated by Eclipse 24 | proguard/ 25 | 26 | # Intellij project files 27 | *.iml 28 | *.ipr 29 | *.iws 30 | .idea/ 31 | 32 | -------------------------------------------------------------------------------- /.gradle/3.3/taskArtifacts/fileHashes.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/.gradle/3.3/taskArtifacts/fileHashes.bin -------------------------------------------------------------------------------- /.gradle/3.3/taskArtifacts/fileSnapshots.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/.gradle/3.3/taskArtifacts/fileSnapshots.bin -------------------------------------------------------------------------------- /.gradle/3.3/taskArtifacts/taskArtifacts.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/.gradle/3.3/taskArtifacts/taskArtifacts.bin -------------------------------------------------------------------------------- /.gradle/3.3/taskArtifacts/taskArtifacts.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/.gradle/3.3/taskArtifacts/taskArtifacts.lock -------------------------------------------------------------------------------- /.gradle/3.3/tasks/_emoji_compileDebugJavaWithJavac/localClassSetAnalysis/localClassSetAnalysis.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/.gradle/3.3/tasks/_emoji_compileDebugJavaWithJavac/localClassSetAnalysis/localClassSetAnalysis.bin -------------------------------------------------------------------------------- /.gradle/3.3/tasks/_emoji_compileDebugJavaWithJavac/localClassSetAnalysis/localClassSetAnalysis.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/.gradle/3.3/tasks/_emoji_compileDebugJavaWithJavac/localClassSetAnalysis/localClassSetAnalysis.lock -------------------------------------------------------------------------------- /.gradle/3.3/tasks/_emoji_compileDebugJavaWithJavac/localJarClasspathSnapshot/localJarClasspathSnapshot.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/.gradle/3.3/tasks/_emoji_compileDebugJavaWithJavac/localJarClasspathSnapshot/localJarClasspathSnapshot.bin -------------------------------------------------------------------------------- /.gradle/3.3/tasks/_emoji_compileDebugJavaWithJavac/localJarClasspathSnapshot/localJarClasspathSnapshot.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/.gradle/3.3/tasks/_emoji_compileDebugJavaWithJavac/localJarClasspathSnapshot/localJarClasspathSnapshot.lock -------------------------------------------------------------------------------- /.gradle/3.3/tasks/_emoji_compileReleaseJavaWithJavac/localClassSetAnalysis/localClassSetAnalysis.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/.gradle/3.3/tasks/_emoji_compileReleaseJavaWithJavac/localClassSetAnalysis/localClassSetAnalysis.bin -------------------------------------------------------------------------------- /.gradle/3.3/tasks/_emoji_compileReleaseJavaWithJavac/localClassSetAnalysis/localClassSetAnalysis.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/.gradle/3.3/tasks/_emoji_compileReleaseJavaWithJavac/localClassSetAnalysis/localClassSetAnalysis.lock -------------------------------------------------------------------------------- /.gradle/3.3/tasks/_emoji_compileReleaseJavaWithJavac/localJarClasspathSnapshot/localJarClasspathSnapshot.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/.gradle/3.3/tasks/_emoji_compileReleaseJavaWithJavac/localJarClasspathSnapshot/localJarClasspathSnapshot.bin -------------------------------------------------------------------------------- /.gradle/3.3/tasks/_emoji_compileReleaseJavaWithJavac/localJarClasspathSnapshot/localJarClasspathSnapshot.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/.gradle/3.3/tasks/_emoji_compileReleaseJavaWithJavac/localJarClasspathSnapshot/localJarClasspathSnapshot.lock -------------------------------------------------------------------------------- /.gradle/3.3/tasks/_test1_compileDebugJavaWithJavac/localClassSetAnalysis/localClassSetAnalysis.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/.gradle/3.3/tasks/_test1_compileDebugJavaWithJavac/localClassSetAnalysis/localClassSetAnalysis.bin -------------------------------------------------------------------------------- /.gradle/3.3/tasks/_test1_compileDebugJavaWithJavac/localClassSetAnalysis/localClassSetAnalysis.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/.gradle/3.3/tasks/_test1_compileDebugJavaWithJavac/localClassSetAnalysis/localClassSetAnalysis.lock -------------------------------------------------------------------------------- /.gradle/3.3/tasks/_test1_compileDebugJavaWithJavac/localJarClasspathSnapshot/localJarClasspathSnapshot.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/.gradle/3.3/tasks/_test1_compileDebugJavaWithJavac/localJarClasspathSnapshot/localJarClasspathSnapshot.bin -------------------------------------------------------------------------------- /.gradle/3.3/tasks/_test1_compileDebugJavaWithJavac/localJarClasspathSnapshot/localJarClasspathSnapshot.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/.gradle/3.3/tasks/_test1_compileDebugJavaWithJavac/localJarClasspathSnapshot/localJarClasspathSnapshot.lock -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 17 | 18 | -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 11 | 12 | -------------------------------------------------------------------------------- /app-debug.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app-debug.apk -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/libs/MobCommons-2017.0322.0931.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/libs/MobCommons-2017.0322.0931.jar -------------------------------------------------------------------------------- /app/libs/MobTools-2017.0322.0931.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/libs/MobTools-2017.0322.0931.jar -------------------------------------------------------------------------------- /app/libs/Rong_IMLib.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/libs/Rong_IMLib.jar -------------------------------------------------------------------------------- /app/libs/ShareSDK-Alipay-2.8.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/libs/ShareSDK-Alipay-2.8.2.jar -------------------------------------------------------------------------------- /app/libs/ShareSDK-Alipay-Core-2.8.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/libs/ShareSDK-Alipay-Core-2.8.2.jar -------------------------------------------------------------------------------- /app/libs/ShareSDK-Alipay-Moments-2.8.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/libs/ShareSDK-Alipay-Moments-2.8.2.jar -------------------------------------------------------------------------------- /app/libs/ShareSDK-Core-2.8.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/libs/ShareSDK-Core-2.8.2.jar -------------------------------------------------------------------------------- /app/libs/ShareSDK-Email-2.8.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/libs/ShareSDK-Email-2.8.2.jar -------------------------------------------------------------------------------- /app/libs/ShareSDK-Facebook-2.8.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/libs/ShareSDK-Facebook-2.8.2.jar -------------------------------------------------------------------------------- /app/libs/ShareSDK-QQ-2.8.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/libs/ShareSDK-QQ-2.8.2.jar -------------------------------------------------------------------------------- /app/libs/ShareSDK-QZone-2.8.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/libs/ShareSDK-QZone-2.8.2.jar -------------------------------------------------------------------------------- /app/libs/ShareSDK-ShortMessage-2.8.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/libs/ShareSDK-ShortMessage-2.8.2.jar -------------------------------------------------------------------------------- /app/libs/ShareSDK-SinaWeibo-2.8.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/libs/ShareSDK-SinaWeibo-2.8.2.jar -------------------------------------------------------------------------------- /app/libs/ShareSDK-TencentWeibo-2.8.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/libs/ShareSDK-TencentWeibo-2.8.2.jar -------------------------------------------------------------------------------- /app/libs/ShareSDK-Twitter-2.8.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/libs/ShareSDK-Twitter-2.8.2.jar -------------------------------------------------------------------------------- /app/libs/ShareSDK-Wechat-2.8.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/libs/ShareSDK-Wechat-2.8.2.jar -------------------------------------------------------------------------------- /app/libs/ShareSDK-Wechat-Core-2.8.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/libs/ShareSDK-Wechat-Core-2.8.2.jar -------------------------------------------------------------------------------- /app/libs/ShareSDK-Wechat-Favorite-2.8.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/libs/ShareSDK-Wechat-Favorite-2.8.2.jar -------------------------------------------------------------------------------- /app/libs/ShareSDK-Wechat-Moments-2.8.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/libs/ShareSDK-Wechat-Moments-2.8.2.jar -------------------------------------------------------------------------------- /app/libs/TencentLocationSDK_v4.9.7.12_r247861_161205_1104.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/libs/TencentLocationSDK_v4.9.7.12_r247861_161205_1104.jar -------------------------------------------------------------------------------- /app/libs/TencentMapSDK_Raster_v_1.2.7_51ae0e7.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/libs/TencentMapSDK_Raster_v_1.2.7_51ae0e7.jar -------------------------------------------------------------------------------- /app/libs/TencentSearch1.1.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/libs/TencentSearch1.1.3.jar -------------------------------------------------------------------------------- /app/libs/alipaySdk-20161129.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/libs/alipaySdk-20161129.jar -------------------------------------------------------------------------------- /app/libs/arm64-v8a/libRongIMLib.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/libs/arm64-v8a/libRongIMLib.so -------------------------------------------------------------------------------- /app/libs/arm64-v8a/libtencentloc.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/libs/arm64-v8a/libtencentloc.so -------------------------------------------------------------------------------- /app/libs/armeabi-v7a/libRongIMLib.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/libs/armeabi-v7a/libRongIMLib.so -------------------------------------------------------------------------------- /app/libs/armeabi-v7a/libtencentloc.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/libs/armeabi-v7a/libtencentloc.so -------------------------------------------------------------------------------- /app/libs/armeabi/libRongIMLib.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/libs/armeabi/libRongIMLib.so -------------------------------------------------------------------------------- /app/libs/armeabi/libtencentloc.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/libs/armeabi/libtencentloc.so -------------------------------------------------------------------------------- /app/libs/joda-time-2.5-sources.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/libs/joda-time-2.5-sources.jar -------------------------------------------------------------------------------- /app/libs/joda-time-2.5.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/libs/joda-time-2.5.jar -------------------------------------------------------------------------------- /app/libs/pinyin4j-2.5.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/libs/pinyin4j-2.5.0.jar -------------------------------------------------------------------------------- /app/libs/redpacket-alipay-1.1.2.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/libs/redpacket-alipay-1.1.2.aar -------------------------------------------------------------------------------- /app/libs/volley-1.0.19.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/libs/volley-1.0.19.jar -------------------------------------------------------------------------------- /app/libs/x86/libRongIMLib.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/libs/x86/libRongIMLib.so -------------------------------------------------------------------------------- /app/libs/x86/libtencentloc.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/libs/x86/libtencentloc.so -------------------------------------------------------------------------------- /app/libs/x86_64/libtencentloc.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/libs/x86_64/libtencentloc.so -------------------------------------------------------------------------------- /app/src/main/assets/litepal.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /app/src/main/assets/open_packet_sound.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/assets/open_packet_sound.mp3 -------------------------------------------------------------------------------- /app/src/main/assets/open_packet_sound.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/assets/open_packet_sound.wav -------------------------------------------------------------------------------- /app/src/main/assets/sticker/ajmd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/assets/sticker/ajmd.png -------------------------------------------------------------------------------- /app/src/main/assets/sticker/ajmd/ajmd001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/assets/sticker/ajmd/ajmd001.png -------------------------------------------------------------------------------- /app/src/main/assets/sticker/ajmd/ajmd002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/assets/sticker/ajmd/ajmd002.png -------------------------------------------------------------------------------- /app/src/main/assets/sticker/ajmd/ajmd003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/assets/sticker/ajmd/ajmd003.png -------------------------------------------------------------------------------- /app/src/main/assets/sticker/ajmd/ajmd004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/assets/sticker/ajmd/ajmd004.png -------------------------------------------------------------------------------- /app/src/main/assets/sticker/ajmd/ajmd005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/assets/sticker/ajmd/ajmd005.png -------------------------------------------------------------------------------- /app/src/main/assets/sticker/ajmd/ajmd006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/assets/sticker/ajmd/ajmd006.png -------------------------------------------------------------------------------- /app/src/main/assets/sticker/ajmd/ajmd007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/assets/sticker/ajmd/ajmd007.png -------------------------------------------------------------------------------- /app/src/main/assets/sticker/ajmd/ajmd008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/assets/sticker/ajmd/ajmd008.png -------------------------------------------------------------------------------- /app/src/main/assets/sticker/ajmd/ajmd009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/assets/sticker/ajmd/ajmd009.png -------------------------------------------------------------------------------- /app/src/main/assets/sticker/ajmd/ajmd010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/assets/sticker/ajmd/ajmd010.png -------------------------------------------------------------------------------- /app/src/main/assets/sticker/ajmd/ajmd011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/assets/sticker/ajmd/ajmd011.png -------------------------------------------------------------------------------- /app/src/main/assets/sticker/ajmd/ajmd012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/assets/sticker/ajmd/ajmd012.png -------------------------------------------------------------------------------- /app/src/main/assets/sticker/ajmd/ajmd013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/assets/sticker/ajmd/ajmd013.png -------------------------------------------------------------------------------- /app/src/main/assets/sticker/ajmd/ajmd014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/assets/sticker/ajmd/ajmd014.png -------------------------------------------------------------------------------- /app/src/main/assets/sticker/ajmd/ajmd015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/assets/sticker/ajmd/ajmd015.png -------------------------------------------------------------------------------- /app/src/main/assets/sticker/ajmd/ajmd016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/assets/sticker/ajmd/ajmd016.png -------------------------------------------------------------------------------- /app/src/main/assets/sticker/ajmd/ajmd017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/assets/sticker/ajmd/ajmd017.png -------------------------------------------------------------------------------- /app/src/main/assets/sticker/ajmd/ajmd018.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/assets/sticker/ajmd/ajmd018.png -------------------------------------------------------------------------------- /app/src/main/assets/sticker/ajmd/ajmd019.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/assets/sticker/ajmd/ajmd019.png -------------------------------------------------------------------------------- /app/src/main/assets/sticker/ajmd/ajmd020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/assets/sticker/ajmd/ajmd020.png -------------------------------------------------------------------------------- /app/src/main/assets/sticker/ajmd/ajmd021.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/assets/sticker/ajmd/ajmd021.png -------------------------------------------------------------------------------- /app/src/main/assets/sticker/ajmd/ajmd022.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/assets/sticker/ajmd/ajmd022.png -------------------------------------------------------------------------------- /app/src/main/assets/sticker/ajmd/ajmd023.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/assets/sticker/ajmd/ajmd023.png -------------------------------------------------------------------------------- /app/src/main/assets/sticker/ajmd/ajmd024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/assets/sticker/ajmd/ajmd024.png -------------------------------------------------------------------------------- /app/src/main/assets/sticker/ajmd/ajmd025.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/assets/sticker/ajmd/ajmd025.png -------------------------------------------------------------------------------- /app/src/main/assets/sticker/ajmd/ajmd026.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/assets/sticker/ajmd/ajmd026.png -------------------------------------------------------------------------------- /app/src/main/assets/sticker/ajmd/ajmd027.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/assets/sticker/ajmd/ajmd027.png -------------------------------------------------------------------------------- /app/src/main/assets/sticker/ajmd/ajmd028.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/assets/sticker/ajmd/ajmd028.png -------------------------------------------------------------------------------- /app/src/main/assets/sticker/ajmd/ajmd029.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/assets/sticker/ajmd/ajmd029.png -------------------------------------------------------------------------------- /app/src/main/assets/sticker/ajmd/ajmd030.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/assets/sticker/ajmd/ajmd030.png -------------------------------------------------------------------------------- /app/src/main/assets/sticker/ajmd/ajmd031.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/assets/sticker/ajmd/ajmd031.png -------------------------------------------------------------------------------- /app/src/main/assets/sticker/ajmd/ajmd032.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/assets/sticker/ajmd/ajmd032.png -------------------------------------------------------------------------------- /app/src/main/assets/sticker/ajmd/ajmd033.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/assets/sticker/ajmd/ajmd033.png -------------------------------------------------------------------------------- /app/src/main/assets/sticker/ajmd/ajmd034.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/assets/sticker/ajmd/ajmd034.png -------------------------------------------------------------------------------- /app/src/main/assets/sticker/ajmd/ajmd035.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/assets/sticker/ajmd/ajmd035.png -------------------------------------------------------------------------------- /app/src/main/assets/sticker/ajmd/ajmd036.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/assets/sticker/ajmd/ajmd036.png -------------------------------------------------------------------------------- /app/src/main/assets/sticker/ajmd/ajmd037.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/assets/sticker/ajmd/ajmd037.png -------------------------------------------------------------------------------- /app/src/main/assets/sticker/ajmd/ajmd038.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/assets/sticker/ajmd/ajmd038.png -------------------------------------------------------------------------------- /app/src/main/assets/sticker/ajmd/ajmd039.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/assets/sticker/ajmd/ajmd039.png -------------------------------------------------------------------------------- /app/src/main/assets/sticker/ajmd/ajmd040.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/assets/sticker/ajmd/ajmd040.png -------------------------------------------------------------------------------- /app/src/main/assets/sticker/ajmd/ajmd041.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/assets/sticker/ajmd/ajmd041.png -------------------------------------------------------------------------------- /app/src/main/assets/sticker/ajmd/ajmd042.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/assets/sticker/ajmd/ajmd042.png -------------------------------------------------------------------------------- /app/src/main/assets/sticker/ajmd/ajmd043.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/assets/sticker/ajmd/ajmd043.png -------------------------------------------------------------------------------- /app/src/main/assets/sticker/ajmd/ajmd044.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/assets/sticker/ajmd/ajmd044.png -------------------------------------------------------------------------------- /app/src/main/assets/sticker/ajmd/ajmd045.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/assets/sticker/ajmd/ajmd045.png -------------------------------------------------------------------------------- /app/src/main/assets/sticker/ajmd/ajmd046.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/assets/sticker/ajmd/ajmd046.png -------------------------------------------------------------------------------- /app/src/main/assets/sticker/ajmd/ajmd047.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/assets/sticker/ajmd/ajmd047.png -------------------------------------------------------------------------------- /app/src/main/assets/sticker/ajmd/ajmd048.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/assets/sticker/ajmd/ajmd048.png -------------------------------------------------------------------------------- /app/src/main/assets/sticker/lt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/assets/sticker/lt.png -------------------------------------------------------------------------------- /app/src/main/assets/sticker/lt/lt001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/assets/sticker/lt/lt001.png -------------------------------------------------------------------------------- /app/src/main/assets/sticker/lt/lt002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/assets/sticker/lt/lt002.png -------------------------------------------------------------------------------- /app/src/main/assets/sticker/lt/lt003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/assets/sticker/lt/lt003.png -------------------------------------------------------------------------------- /app/src/main/assets/sticker/lt/lt004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/assets/sticker/lt/lt004.png -------------------------------------------------------------------------------- /app/src/main/assets/sticker/lt/lt005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/assets/sticker/lt/lt005.png -------------------------------------------------------------------------------- /app/src/main/assets/sticker/lt/lt006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/assets/sticker/lt/lt006.png -------------------------------------------------------------------------------- /app/src/main/assets/sticker/lt/lt007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/assets/sticker/lt/lt007.png -------------------------------------------------------------------------------- /app/src/main/assets/sticker/lt/lt008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/assets/sticker/lt/lt008.png -------------------------------------------------------------------------------- /app/src/main/assets/sticker/lt/lt009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/assets/sticker/lt/lt009.png -------------------------------------------------------------------------------- /app/src/main/assets/sticker/lt/lt010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/assets/sticker/lt/lt010.png -------------------------------------------------------------------------------- /app/src/main/assets/sticker/lt/lt011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/assets/sticker/lt/lt011.png -------------------------------------------------------------------------------- /app/src/main/assets/sticker/lt/lt012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/assets/sticker/lt/lt012.png -------------------------------------------------------------------------------- /app/src/main/assets/sticker/lt/lt013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/assets/sticker/lt/lt013.png -------------------------------------------------------------------------------- /app/src/main/assets/sticker/lt/lt014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/assets/sticker/lt/lt014.png -------------------------------------------------------------------------------- /app/src/main/assets/sticker/lt/lt015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/assets/sticker/lt/lt015.png -------------------------------------------------------------------------------- /app/src/main/assets/sticker/lt/lt016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/assets/sticker/lt/lt016.png -------------------------------------------------------------------------------- /app/src/main/assets/sticker/lt/lt017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/assets/sticker/lt/lt017.png -------------------------------------------------------------------------------- /app/src/main/assets/sticker/lt/lt018.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/assets/sticker/lt/lt018.png -------------------------------------------------------------------------------- /app/src/main/assets/sticker/lt/lt019.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/assets/sticker/lt/lt019.png -------------------------------------------------------------------------------- /app/src/main/assets/sticker/lt/lt020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/assets/sticker/lt/lt020.png -------------------------------------------------------------------------------- /app/src/main/assets/sticker/tsj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/assets/sticker/tsj.png -------------------------------------------------------------------------------- /app/src/main/assets/sticker/tsj/tsj_00.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/assets/sticker/tsj/tsj_00.gif -------------------------------------------------------------------------------- /app/src/main/assets/sticker/tsj/tsj_01.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/assets/sticker/tsj/tsj_01.gif -------------------------------------------------------------------------------- /app/src/main/assets/sticker/tsj/tsj_02.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/assets/sticker/tsj/tsj_02.gif -------------------------------------------------------------------------------- /app/src/main/assets/sticker/tsj/tsj_03.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/assets/sticker/tsj/tsj_03.gif -------------------------------------------------------------------------------- /app/src/main/assets/sticker/tsj/tsj_04.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/assets/sticker/tsj/tsj_04.gif -------------------------------------------------------------------------------- /app/src/main/assets/sticker/tsj/tsj_05.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/assets/sticker/tsj/tsj_05.gif -------------------------------------------------------------------------------- /app/src/main/assets/sticker/tsj/tsj_06.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/assets/sticker/tsj/tsj_06.gif -------------------------------------------------------------------------------- /app/src/main/assets/sticker/tsj/tsj_07.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/assets/sticker/tsj/tsj_07.gif -------------------------------------------------------------------------------- /app/src/main/assets/sticker/tsj/tsj_08.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/assets/sticker/tsj/tsj_08.gif -------------------------------------------------------------------------------- /app/src/main/assets/sticker/tsj/tsj_09.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/assets/sticker/tsj/tsj_09.gif -------------------------------------------------------------------------------- /app/src/main/assets/sticker/tsj/tsj_10.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/assets/sticker/tsj/tsj_10.gif -------------------------------------------------------------------------------- /app/src/main/assets/sticker/tsj/tsj_11.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/assets/sticker/tsj/tsj_11.gif -------------------------------------------------------------------------------- /app/src/main/assets/sticker/tsj/tsj_12.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/assets/sticker/tsj/tsj_12.gif -------------------------------------------------------------------------------- /app/src/main/assets/sticker/tsj/tsj_13.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/assets/sticker/tsj/tsj_13.gif -------------------------------------------------------------------------------- /app/src/main/assets/sticker/tsj/tsj_14.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/assets/sticker/tsj/tsj_14.gif -------------------------------------------------------------------------------- /app/src/main/assets/sticker/tsj/tsj_15.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/assets/sticker/tsj/tsj_15.gif -------------------------------------------------------------------------------- /app/src/main/assets/sticker/xxy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/assets/sticker/xxy.png -------------------------------------------------------------------------------- /app/src/main/assets/sticker/xxy/xxy001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/assets/sticker/xxy/xxy001.png -------------------------------------------------------------------------------- /app/src/main/assets/sticker/xxy/xxy002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/assets/sticker/xxy/xxy002.png -------------------------------------------------------------------------------- /app/src/main/assets/sticker/xxy/xxy003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/assets/sticker/xxy/xxy003.png -------------------------------------------------------------------------------- /app/src/main/assets/sticker/xxy/xxy004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/assets/sticker/xxy/xxy004.png -------------------------------------------------------------------------------- /app/src/main/assets/sticker/xxy/xxy005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/assets/sticker/xxy/xxy005.png -------------------------------------------------------------------------------- /app/src/main/assets/sticker/xxy/xxy006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/assets/sticker/xxy/xxy006.png -------------------------------------------------------------------------------- /app/src/main/assets/sticker/xxy/xxy007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/assets/sticker/xxy/xxy007.png -------------------------------------------------------------------------------- /app/src/main/assets/sticker/xxy/xxy008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/assets/sticker/xxy/xxy008.png -------------------------------------------------------------------------------- /app/src/main/assets/sticker/xxy/xxy009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/assets/sticker/xxy/xxy009.png -------------------------------------------------------------------------------- /app/src/main/assets/sticker/xxy/xxy010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/assets/sticker/xxy/xxy010.png -------------------------------------------------------------------------------- /app/src/main/assets/sticker/xxy/xxy011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/assets/sticker/xxy/xxy011.png -------------------------------------------------------------------------------- /app/src/main/assets/sticker/xxy/xxy012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/assets/sticker/xxy/xxy012.png -------------------------------------------------------------------------------- /app/src/main/assets/sticker/xxy/xxy013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/assets/sticker/xxy/xxy013.png -------------------------------------------------------------------------------- /app/src/main/assets/sticker/xxy/xxy014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/assets/sticker/xxy/xxy014.png -------------------------------------------------------------------------------- /app/src/main/assets/sticker/xxy/xxy015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/assets/sticker/xxy/xxy015.png -------------------------------------------------------------------------------- /app/src/main/assets/sticker/xxy/xxy016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/assets/sticker/xxy/xxy016.png -------------------------------------------------------------------------------- /app/src/main/assets/sticker/xxy/xxy017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/assets/sticker/xxy/xxy017.png -------------------------------------------------------------------------------- /app/src/main/assets/sticker/xxy/xxy018.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/assets/sticker/xxy/xxy018.png -------------------------------------------------------------------------------- /app/src/main/assets/sticker/xxy/xxy019.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/assets/sticker/xxy/xxy019.png -------------------------------------------------------------------------------- /app/src/main/assets/sticker/xxy/xxy020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/assets/sticker/xxy/xxy020.png -------------------------------------------------------------------------------- /app/src/main/assets/sticker/xxy/xxy021.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/assets/sticker/xxy/xxy021.png -------------------------------------------------------------------------------- /app/src/main/assets/sticker/xxy/xxy022.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/assets/sticker/xxy/xxy022.png -------------------------------------------------------------------------------- /app/src/main/assets/sticker/xxy/xxy023.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/assets/sticker/xxy/xxy023.png -------------------------------------------------------------------------------- /app/src/main/assets/sticker/xxy/xxy024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/assets/sticker/xxy/xxy024.png -------------------------------------------------------------------------------- /app/src/main/assets/sticker/xxy/xxy025.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/assets/sticker/xxy/xxy025.png -------------------------------------------------------------------------------- /app/src/main/assets/sticker/xxy/xxy026.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/assets/sticker/xxy/xxy026.png -------------------------------------------------------------------------------- /app/src/main/assets/sticker/xxy/xxy027.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/assets/sticker/xxy/xxy027.png -------------------------------------------------------------------------------- /app/src/main/assets/sticker/xxy/xxy028.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/assets/sticker/xxy/xxy028.png -------------------------------------------------------------------------------- /app/src/main/assets/sticker/xxy/xxy029.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/assets/sticker/xxy/xxy029.png -------------------------------------------------------------------------------- /app/src/main/assets/sticker/xxy/xxy030.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/assets/sticker/xxy/xxy030.png -------------------------------------------------------------------------------- /app/src/main/assets/sticker/xxy/xxy031.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/assets/sticker/xxy/xxy031.png -------------------------------------------------------------------------------- /app/src/main/assets/sticker/xxy/xxy032.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/assets/sticker/xxy/xxy032.png -------------------------------------------------------------------------------- /app/src/main/assets/sticker/xxy/xxy033.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/assets/sticker/xxy/xxy033.png -------------------------------------------------------------------------------- /app/src/main/assets/sticker/xxy/xxy034.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/assets/sticker/xxy/xxy034.png -------------------------------------------------------------------------------- /app/src/main/assets/sticker/xxy/xxy035.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/assets/sticker/xxy/xxy035.png -------------------------------------------------------------------------------- /app/src/main/assets/sticker/xxy/xxy036.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/assets/sticker/xxy/xxy036.png -------------------------------------------------------------------------------- /app/src/main/assets/sticker/xxy/xxy037.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/assets/sticker/xxy/xxy037.png -------------------------------------------------------------------------------- /app/src/main/assets/sticker/xxy/xxy038.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/assets/sticker/xxy/xxy038.png -------------------------------------------------------------------------------- /app/src/main/assets/sticker/xxy/xxy039.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/assets/sticker/xxy/xxy039.png -------------------------------------------------------------------------------- /app/src/main/assets/sticker/xxy/xxy040.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/assets/sticker/xxy/xxy040.png -------------------------------------------------------------------------------- /app/src/main/java/cn/sharesdk/onekeyshare/CustomerLogo.java: -------------------------------------------------------------------------------- 1 | /* 2 | * 官网地站:http://www.mob.com 3 | * 技术支持QQ: 4006852216 4 | * 官方微信:ShareSDK (如果发布新版本的话,我们将会第一时间通过微信将版本更新内容推送给您。如果使用过程中有任何问题,也可以通过微信与我们取得联系,我们将会在24小时内给予回复) 5 | * 6 | * Copyright (c) 2013年 mob.com. All rights reserved. 7 | */ 8 | 9 | package cn.sharesdk.onekeyshare; 10 | 11 | import android.graphics.Bitmap; 12 | import android.view.View.OnClickListener; 13 | 14 | /** 九宫格自定义的图标对象 */ 15 | public class CustomerLogo { 16 | public String label; 17 | public Bitmap logo; 18 | public OnClickListener listener; 19 | } 20 | -------------------------------------------------------------------------------- /app/src/main/java/cn/sharesdk/onekeyshare/ShareContentCustomizeCallback.java: -------------------------------------------------------------------------------- 1 | /* 2 | * 官网地站:http://www.mob.com 3 | * 技术支持QQ: 4006852216 4 | * 官方微信:ShareSDK (如果发布新版本的话,我们将会第一时间通过微信将版本更新内容推送给您。如果使用过程中有任何问题,也可以通过微信与我们取得联系,我们将会在24小时内给予回复) 5 | * 6 | * Copyright (c) 2013年 mob.com. All rights reserved. 7 | */ 8 | 9 | package cn.sharesdk.onekeyshare; 10 | 11 | import cn.sharesdk.framework.Platform; 12 | import cn.sharesdk.framework.Platform.ShareParams; 13 | 14 | /** 自定义不同平台分享不同内容的接口 */ 15 | public interface ShareContentCustomizeCallback { 16 | 17 | public void onShare(Platform platform, ShareParams paramsToShare); 18 | 19 | } 20 | -------------------------------------------------------------------------------- /app/src/main/java/com/lqr/wechat/api/redpacket/SignService.java: -------------------------------------------------------------------------------- 1 | package com.lqr.wechat.api.redpacket; 2 | 3 | import com.lqr.wechat.model.redpacket.SignModel; 4 | 5 | import retrofit2.Call; 6 | import retrofit2.http.GET; 7 | import retrofit2.http.Query; 8 | 9 | /** 10 | * @创建者 CSDN_LQR 11 | * @描述 云账户获取demo签名接口 12 | */ 13 | 14 | public interface SignService { 15 | 16 | @GET("api/demo-sign/") 17 | Call getSignInfo(@Query("uid") String userId, @Query("token") String token); 18 | } 19 | -------------------------------------------------------------------------------- /app/src/main/java/com/lqr/wechat/apshare/ShareEntryActivity.java: -------------------------------------------------------------------------------- 1 | package com.lqr.wechat.apshare; 2 | 3 | import cn.sharesdk.alipay.utils.AlipayHandlerActivity; 4 | 5 | public class ShareEntryActivity extends AlipayHandlerActivity { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /app/src/main/java/com/lqr/wechat/model/exception/ServerException.java: -------------------------------------------------------------------------------- 1 | package com.lqr.wechat.model.exception; 2 | 3 | import com.lqr.wechat.R; 4 | import com.lqr.wechat.util.UIUtils; 5 | 6 | /** 7 | * @创建者 CSDN_LQR 8 | * @描述 服务器异常 9 | */ 10 | public class ServerException extends Exception { 11 | 12 | public ServerException(int errorCode) { 13 | this(UIUtils.getString(R.string.error_code) + errorCode); 14 | } 15 | 16 | public ServerException(String message) { 17 | super(message); 18 | } 19 | 20 | } 21 | -------------------------------------------------------------------------------- /app/src/main/java/com/lqr/wechat/model/redpacket/SignModel.java: -------------------------------------------------------------------------------- 1 | package com.lqr.wechat.model.redpacket; 2 | 3 | /** 4 | * @创建者 CSDN_LQR 5 | * @描述 云账户签名模型 6 | */ 7 | 8 | public class SignModel { 9 | 10 | public String partner; 11 | 12 | public String user_id; 13 | 14 | public String timestamp; 15 | 16 | public String sign; 17 | 18 | public String reg_hongbao_user; 19 | 20 | @Override 21 | public String toString() { 22 | return "SignModel{" + 23 | "partner='" + partner + '\'' + 24 | ", user_id='" + user_id + '\'' + 25 | ", timestamp='" + timestamp + '\'' + 26 | ", sign='" + sign + '\'' + 27 | ", reg_hongbao_user='" + reg_hongbao_user + '\'' + 28 | '}'; 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /app/src/main/java/com/lqr/wechat/model/request/AddToBlackListRequest.java: -------------------------------------------------------------------------------- 1 | package com.lqr.wechat.model.request; 2 | 3 | /** 4 | * Created by AMing on 16/3/4. 5 | * Company RongCloud 6 | */ 7 | public class AddToBlackListRequest { 8 | private String friendId; 9 | 10 | public AddToBlackListRequest(String friendId) { 11 | this.friendId = friendId; 12 | } 13 | 14 | public String getFriendId() { 15 | return friendId; 16 | } 17 | 18 | public void setFriendId(String friendId) { 19 | this.friendId = friendId; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /app/src/main/java/com/lqr/wechat/model/request/AgreeFriendsRequest.java: -------------------------------------------------------------------------------- 1 | package com.lqr.wechat.model.request; 2 | 3 | 4 | /** 5 | * Created by AMing on 16/1/8. 6 | * Company RongCloud 7 | */ 8 | public class AgreeFriendsRequest { 9 | 10 | private String friendId; 11 | 12 | public AgreeFriendsRequest(String friendId) { 13 | this.friendId = friendId; 14 | } 15 | 16 | public String getFriendId() { 17 | return friendId; 18 | } 19 | 20 | public void setFriendId(String friendId) { 21 | this.friendId = friendId; 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /app/src/main/java/com/lqr/wechat/model/request/CheckPhoneRequest.java: -------------------------------------------------------------------------------- 1 | package com.lqr.wechat.model.request; 2 | 3 | 4 | /** 5 | * Created by AMing on 15/12/23. 6 | * Company RongCloud 7 | */ 8 | public class CheckPhoneRequest { 9 | 10 | private String phone; 11 | 12 | private String region; 13 | 14 | public CheckPhoneRequest(String phone, String region) { 15 | this.phone = phone; 16 | this.region = region; 17 | } 18 | 19 | public String getPhone() { 20 | return phone; 21 | } 22 | 23 | public void setPhone(String phone) { 24 | this.phone = phone; 25 | } 26 | 27 | public String getRegion() { 28 | return region; 29 | } 30 | 31 | public void setRegion(String region) { 32 | this.region = region; 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /app/src/main/java/com/lqr/wechat/model/request/CreateGroupRequest.java: -------------------------------------------------------------------------------- 1 | package com.lqr.wechat.model.request; 2 | 3 | import java.util.List; 4 | 5 | /** 6 | * Created by AMing on 16/1/25. 7 | * Company RongCloud 8 | */ 9 | public class CreateGroupRequest { 10 | 11 | private String name; 12 | 13 | private List memberIds; 14 | 15 | public CreateGroupRequest(String name, List memberIds) { 16 | this.name = name; 17 | this.memberIds = memberIds; 18 | } 19 | 20 | public List getMemberIds() { 21 | return memberIds; 22 | } 23 | 24 | public void setMemberIds(List memberIds) { 25 | this.memberIds = memberIds; 26 | } 27 | 28 | public String getName() { 29 | return name; 30 | } 31 | 32 | public void setName(String name) { 33 | this.name = name; 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /app/src/main/java/com/lqr/wechat/model/request/DeleteFriendRequest.java: -------------------------------------------------------------------------------- 1 | package com.lqr.wechat.model.request; 2 | 3 | /** 4 | * Created by AMing on 16/2/17. 5 | * Company RongCloud 6 | */ 7 | public class DeleteFriendRequest { 8 | private String friendId; 9 | 10 | public DeleteFriendRequest(String friendId) { 11 | this.friendId = friendId; 12 | } 13 | 14 | public String getFriendId() { 15 | return friendId; 16 | } 17 | 18 | public void setFriendId(String friendId) { 19 | this.friendId = friendId; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /app/src/main/java/com/lqr/wechat/model/request/DismissGroupRequest.java: -------------------------------------------------------------------------------- 1 | package com.lqr.wechat.model.request; 2 | 3 | /** 4 | * Created by AMing on 16/1/29. 5 | * Company RongCloud 6 | */ 7 | public class DismissGroupRequest { 8 | 9 | private String groupId; 10 | 11 | public DismissGroupRequest(String groupId) { 12 | this.groupId = groupId; 13 | } 14 | 15 | public String getGroupId() { 16 | return groupId; 17 | } 18 | 19 | public void setGroupId(String groupId) { 20 | this.groupId = groupId; 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /app/src/main/java/com/lqr/wechat/model/request/FriendInvitationRequest.java: -------------------------------------------------------------------------------- 1 | package com.lqr.wechat.model.request; 2 | 3 | 4 | /** 5 | * Created by AMing on 16/1/7. 6 | * Company RongCloud 7 | */ 8 | public class FriendInvitationRequest { 9 | private String friendId; 10 | private String message; 11 | 12 | public FriendInvitationRequest(String userid, String addFrinedMessage) { 13 | this.message = addFrinedMessage; 14 | this.friendId = userid; 15 | } 16 | 17 | public String getFriendId() { 18 | return friendId; 19 | } 20 | 21 | public void setFriendId(String friendId) { 22 | this.friendId = friendId; 23 | } 24 | 25 | public String getMessage() { 26 | return message; 27 | } 28 | 29 | public void setMessage(String message) { 30 | this.message = message; 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /app/src/main/java/com/lqr/wechat/model/request/GetUserInfosRequest.java: -------------------------------------------------------------------------------- 1 | package com.lqr.wechat.model.request; 2 | 3 | import java.util.List; 4 | 5 | /** 6 | * Created by AMing on 16/5/23. 7 | * Company RongCloud 8 | */ 9 | public class GetUserInfosRequest { 10 | private List querystring; 11 | 12 | public List getQuerystring() { 13 | return querystring; 14 | } 15 | 16 | public void setQuerystring(List querystring) { 17 | this.querystring = querystring; 18 | } 19 | 20 | public GetUserInfosRequest(List querystring) { 21 | this.querystring = querystring; 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /app/src/main/java/com/lqr/wechat/model/request/JoinGroupRequest.java: -------------------------------------------------------------------------------- 1 | package com.lqr.wechat.model.request; 2 | 3 | /** 4 | * Created by AMing on 16/4/1. 5 | * Company RongCloud 6 | */ 7 | public class JoinGroupRequest { 8 | private String groupId; 9 | 10 | public JoinGroupRequest(String groupId) { 11 | this.groupId = groupId; 12 | } 13 | 14 | public String getGroupId() { 15 | return groupId; 16 | } 17 | 18 | public void setGroupId(String groupId) { 19 | this.groupId = groupId; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /app/src/main/java/com/lqr/wechat/model/request/QuitGroupRequest.java: -------------------------------------------------------------------------------- 1 | package com.lqr.wechat.model.request; 2 | 3 | /** 4 | * Created by AMing on 16/1/29. 5 | * Company RongCloud 6 | */ 7 | public class QuitGroupRequest { 8 | 9 | private String groupId; 10 | 11 | public QuitGroupRequest(String groupId) { 12 | this.groupId = groupId; 13 | } 14 | 15 | public String getGroupId() { 16 | return groupId; 17 | } 18 | 19 | public void setGroupId(String groupId) { 20 | this.groupId = groupId; 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /app/src/main/java/com/lqr/wechat/model/request/RemoveFromBlacklistRequest.java: -------------------------------------------------------------------------------- 1 | package com.lqr.wechat.model.request; 2 | 3 | /** 4 | * Created by AMing on 16/3/4. 5 | * Company RongCloud 6 | */ 7 | public class RemoveFromBlacklistRequest { 8 | 9 | private String friendId; 10 | 11 | public RemoveFromBlacklistRequest(String friendId) { 12 | this.friendId = friendId; 13 | } 14 | 15 | public String getFriendId() { 16 | return friendId; 17 | } 18 | 19 | public void setFriendId(String friendId) { 20 | this.friendId = friendId; 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /app/src/main/java/com/lqr/wechat/model/request/SendCodeRequest.java: -------------------------------------------------------------------------------- 1 | package com.lqr.wechat.model.request; 2 | 3 | 4 | /** 5 | * Created by AMing on 15/12/23. 6 | * Company RongCloud 7 | */ 8 | public class SendCodeRequest { 9 | 10 | private String region; 11 | 12 | private String phone; 13 | 14 | public SendCodeRequest(String region, String phone) { 15 | this.region = region; 16 | this.phone = phone; 17 | } 18 | 19 | public String getRegion() { 20 | return region; 21 | } 22 | 23 | public void setRegion(String region) { 24 | this.region = region; 25 | } 26 | 27 | public String getPhone() { 28 | return phone; 29 | } 30 | 31 | public void setPhone(String phone) { 32 | this.phone = phone; 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /app/src/main/java/com/lqr/wechat/model/request/SetGroupDisplayNameRequest.java: -------------------------------------------------------------------------------- 1 | package com.lqr.wechat.model.request; 2 | 3 | /** 4 | * Created by AMing on 16/2/2. 5 | * Company RongCloud 6 | */ 7 | public class SetGroupDisplayNameRequest { 8 | 9 | private String groupId; 10 | private String displayName; 11 | 12 | public SetGroupDisplayNameRequest(String groupId, String displayName) { 13 | this.groupId = groupId; 14 | this.displayName = displayName; 15 | } 16 | 17 | public String getGroupId() { 18 | return groupId; 19 | } 20 | 21 | public void setGroupId(String groupId) { 22 | this.groupId = groupId; 23 | } 24 | 25 | public String getDisplayName() { 26 | return displayName; 27 | } 28 | 29 | public void setDisplayName(String displayName) { 30 | this.displayName = displayName; 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /app/src/main/java/com/lqr/wechat/model/request/SetGroupNameRequest.java: -------------------------------------------------------------------------------- 1 | package com.lqr.wechat.model.request; 2 | 3 | /** 4 | * Created by AMing on 16/1/28. 5 | * Company RongCloud 6 | */ 7 | public class SetGroupNameRequest { 8 | 9 | private String groupId; 10 | 11 | private String name; 12 | 13 | public SetGroupNameRequest(String groupId, String name) { 14 | this.groupId = groupId; 15 | this.name = name; 16 | } 17 | 18 | public String getGroupId() { 19 | return groupId; 20 | } 21 | 22 | public void setGroupId(String groupId) { 23 | this.groupId = groupId; 24 | } 25 | 26 | public String getName() { 27 | return name; 28 | } 29 | 30 | public void setName(String name) { 31 | this.name = name; 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /app/src/main/java/com/lqr/wechat/model/request/SetGroupPortraitRequest.java: -------------------------------------------------------------------------------- 1 | package com.lqr.wechat.model.request; 2 | 3 | /** 4 | * Created by AMing on 16/1/25. 5 | * Company RongCloud 6 | */ 7 | public class SetGroupPortraitRequest { 8 | 9 | private String groupId; 10 | private String portraitUri; 11 | 12 | public SetGroupPortraitRequest(String groupId, String portraitUri) { 13 | this.groupId = groupId; 14 | this.portraitUri = portraitUri; 15 | } 16 | 17 | public String getGroupId() { 18 | return groupId; 19 | } 20 | 21 | public void setGroupId(String groupId) { 22 | this.groupId = groupId; 23 | } 24 | 25 | public String getPortraitUri() { 26 | return portraitUri; 27 | } 28 | 29 | public void setPortraitUri(String portraitUri) { 30 | this.portraitUri = portraitUri; 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /app/src/main/java/com/lqr/wechat/model/request/SetNameRequest.java: -------------------------------------------------------------------------------- 1 | package com.lqr.wechat.model.request; 2 | 3 | /** 4 | * Created by AMing on 16/1/18. 5 | * Company RongCloud 6 | */ 7 | public class SetNameRequest { 8 | 9 | private String nickname; 10 | 11 | public SetNameRequest(String nickname) { 12 | this.nickname = nickname; 13 | } 14 | 15 | 16 | public String getNickname() { 17 | return nickname; 18 | } 19 | 20 | public void setNickname(String nickname) { 21 | this.nickname = nickname; 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /app/src/main/java/com/lqr/wechat/model/request/SetPortraitRequest.java: -------------------------------------------------------------------------------- 1 | package com.lqr.wechat.model.request; 2 | 3 | /** 4 | * Created by AMing on 16/1/13. 5 | * Company RongCloud 6 | */ 7 | public class SetPortraitRequest { 8 | 9 | private String portraitUri; 10 | 11 | 12 | public SetPortraitRequest(String portraitUri) { 13 | this.portraitUri = portraitUri; 14 | } 15 | 16 | public String getPortraitUri() { 17 | return portraitUri; 18 | } 19 | 20 | public void setPortraitUri(String portraitUri) { 21 | this.portraitUri = portraitUri; 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /app/src/main/java/com/lqr/wechat/model/response/AddGroupMemberResponse.java: -------------------------------------------------------------------------------- 1 | package com.lqr.wechat.model.response; 2 | 3 | /** 4 | * Created by AMing on 16/1/27. 5 | * Company RongCloud 6 | */ 7 | public class AddGroupMemberResponse { 8 | private int code; 9 | 10 | public int getCode() { 11 | return code; 12 | } 13 | 14 | public void setCode(int code) { 15 | this.code = code; 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /app/src/main/java/com/lqr/wechat/model/response/AddToBlackListResponse.java: -------------------------------------------------------------------------------- 1 | package com.lqr.wechat.model.response; 2 | 3 | /** 4 | * Created by AMing on 16/3/4. 5 | * Company RongCloud 6 | */ 7 | public class AddToBlackListResponse { 8 | private int code; 9 | 10 | public int getCode() { 11 | return code; 12 | } 13 | 14 | public void setCode(int code) { 15 | this.code = code; 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /app/src/main/java/com/lqr/wechat/model/response/AgreeFriendsResponse.java: -------------------------------------------------------------------------------- 1 | package com.lqr.wechat.model.response; 2 | 3 | 4 | /** 5 | * Created by AMing on 16/1/8. 6 | * Company RongCloud 7 | */ 8 | public class AgreeFriendsResponse { 9 | private int code; 10 | 11 | public int getCode() { 12 | return code; 13 | } 14 | 15 | public void setCode(int code) { 16 | this.code = code; 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /app/src/main/java/com/lqr/wechat/model/response/ChangePasswordResponse.java: -------------------------------------------------------------------------------- 1 | package com.lqr.wechat.model.response; 2 | 3 | 4 | /** 5 | * Created by AMing on 15/12/24. 6 | * Company RongCloud 7 | */ 8 | public class ChangePasswordResponse { 9 | 10 | 11 | private int code; 12 | 13 | public int getCode() { 14 | return code; 15 | } 16 | 17 | public void setCode(int code) { 18 | this.code = code; 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /app/src/main/java/com/lqr/wechat/model/response/CheckPhoneResponse.java: -------------------------------------------------------------------------------- 1 | package com.lqr.wechat.model.response; 2 | 3 | 4 | /** 5 | * Created by AMing on 15/12/22. 6 | * Company RongCloud 7 | */ 8 | public class CheckPhoneResponse { 9 | 10 | private int code; 11 | 12 | private boolean result; 13 | 14 | public int getCode() { 15 | return code; 16 | } 17 | 18 | public void setCode(int code) { 19 | this.code = code; 20 | } 21 | 22 | public boolean isResult() { 23 | return result; 24 | } 25 | 26 | public void setResult(boolean result) { 27 | this.result = result; 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /app/src/main/java/com/lqr/wechat/model/response/DeleteFriendResponse.java: -------------------------------------------------------------------------------- 1 | package com.lqr.wechat.model.response; 2 | 3 | /** 4 | * Created by AMing on 16/2/17. 5 | * Company RongCloud 6 | */ 7 | public class DeleteFriendResponse { 8 | 9 | private int code; 10 | 11 | public int getCode() { 12 | return code; 13 | } 14 | 15 | public void setCode(int code) { 16 | this.code = code; 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /app/src/main/java/com/lqr/wechat/model/response/DeleteGroupMemberResponse.java: -------------------------------------------------------------------------------- 1 | package com.lqr.wechat.model.response; 2 | 3 | /** 4 | * Created by AMing on 16/1/28. 5 | * Company RongCloud 6 | */ 7 | public class DeleteGroupMemberResponse { 8 | private int code; 9 | 10 | public int getCode() { 11 | return code; 12 | } 13 | 14 | public void setCode(int code) { 15 | this.code = code; 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /app/src/main/java/com/lqr/wechat/model/response/DismissGroupResponse.java: -------------------------------------------------------------------------------- 1 | package com.lqr.wechat.model.response; 2 | 3 | /** 4 | * Created by AMing on 16/1/29. 5 | * Company RongCloud 6 | */ 7 | public class DismissGroupResponse { 8 | private int code; 9 | 10 | public int getCode() { 11 | return code; 12 | } 13 | 14 | public void setCode(int code) { 15 | this.code = code; 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /app/src/main/java/com/lqr/wechat/model/response/JoinGroupResponse.java: -------------------------------------------------------------------------------- 1 | package com.lqr.wechat.model.response; 2 | 3 | /** 4 | * Created by AMing on 16/4/1. 5 | * Company RongCloud 6 | */ 7 | public class JoinGroupResponse { 8 | private int code; 9 | 10 | public int getCode() { 11 | return code; 12 | } 13 | 14 | public void setCode(int code) { 15 | this.code = code; 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /app/src/main/java/com/lqr/wechat/model/response/QuitGroupResponse.java: -------------------------------------------------------------------------------- 1 | package com.lqr.wechat.model.response; 2 | 3 | /** 4 | * Created by AMing on 16/1/29. 5 | * Company RongCloud 6 | */ 7 | public class QuitGroupResponse { 8 | 9 | private int code; 10 | 11 | public int getCode() { 12 | return code; 13 | } 14 | 15 | public void setCode(int code) { 16 | this.code = code; 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /app/src/main/java/com/lqr/wechat/model/response/RemoveFromBlackListResponse.java: -------------------------------------------------------------------------------- 1 | package com.lqr.wechat.model.response; 2 | 3 | /** 4 | * Created by AMing on 16/3/4. 5 | * Company RongCloud 6 | */ 7 | public class RemoveFromBlackListResponse { 8 | private int code; 9 | 10 | public int getCode() { 11 | return code; 12 | } 13 | 14 | public void setCode(int code) { 15 | this.code = code; 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /app/src/main/java/com/lqr/wechat/model/response/RestPasswordResponse.java: -------------------------------------------------------------------------------- 1 | package com.lqr.wechat.model.response; 2 | 3 | 4 | /** 5 | * Created by AMing on 15/12/24. 6 | * Company RongCloud 7 | */ 8 | public class RestPasswordResponse { 9 | 10 | 11 | private int code; 12 | 13 | public int getCode() { 14 | return code; 15 | } 16 | 17 | public void setCode(int code) { 18 | this.code = code; 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /app/src/main/java/com/lqr/wechat/model/response/SendCodeResponse.java: -------------------------------------------------------------------------------- 1 | package com.lqr.wechat.model.response; 2 | 3 | 4 | /** 5 | * Created by AMing on 15/12/23. 6 | * Company RongCloud 7 | */ 8 | public class SendCodeResponse { 9 | 10 | private int code; 11 | 12 | public int getCode() { 13 | return code; 14 | } 15 | 16 | public void setCode(int code) { 17 | this.code = code; 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /app/src/main/java/com/lqr/wechat/model/response/SetFriendDisplayNameResponse.java: -------------------------------------------------------------------------------- 1 | package com.lqr.wechat.model.response; 2 | 3 | /** 4 | * Created by AMing on 16/2/17. 5 | * Company RongCloud 6 | */ 7 | public class SetFriendDisplayNameResponse { 8 | 9 | private int code; 10 | 11 | public int getCode() { 12 | return code; 13 | } 14 | 15 | public void setCode(int code) { 16 | this.code = code; 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /app/src/main/java/com/lqr/wechat/model/response/SetGroupDisplayNameResponse.java: -------------------------------------------------------------------------------- 1 | package com.lqr.wechat.model.response; 2 | 3 | /** 4 | * Created by AMing on 16/2/2. 5 | * Company RongCloud 6 | */ 7 | public class SetGroupDisplayNameResponse { 8 | private int code; 9 | 10 | public int getCode() { 11 | return code; 12 | } 13 | 14 | public void setCode(int code) { 15 | this.code = code; 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /app/src/main/java/com/lqr/wechat/model/response/SetGroupNameResponse.java: -------------------------------------------------------------------------------- 1 | package com.lqr.wechat.model.response; 2 | 3 | /** 4 | * Created by AMing on 16/1/28. 5 | * Company RongCloud 6 | */ 7 | public class SetGroupNameResponse { 8 | 9 | private int code; 10 | 11 | public int getCode() { 12 | return code; 13 | } 14 | 15 | public void setCode(int code) { 16 | this.code = code; 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /app/src/main/java/com/lqr/wechat/model/response/SetGroupPortraitResponse.java: -------------------------------------------------------------------------------- 1 | package com.lqr.wechat.model.response; 2 | 3 | /** 4 | * Created by AMing on 16/1/25. 5 | * Company RongCloud 6 | */ 7 | public class SetGroupPortraitResponse { 8 | 9 | private int code; 10 | 11 | public int getCode() { 12 | return code; 13 | } 14 | 15 | public void setCode(int code) { 16 | this.code = code; 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /app/src/main/java/com/lqr/wechat/model/response/SetNameResponse.java: -------------------------------------------------------------------------------- 1 | package com.lqr.wechat.model.response; 2 | 3 | /** 4 | * Created by AMing on 16/1/18. 5 | * Company RongCloud 6 | */ 7 | public class SetNameResponse { 8 | private int code; 9 | 10 | public int getCode() { 11 | return code; 12 | } 13 | 14 | public void setCode(int code) { 15 | this.code = code; 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /app/src/main/java/com/lqr/wechat/model/response/SetPortraitResponse.java: -------------------------------------------------------------------------------- 1 | package com.lqr.wechat.model.response; 2 | 3 | /** 4 | * Created by AMing on 16/1/13. 5 | * Company RongCloud 6 | */ 7 | public class SetPortraitResponse { 8 | 9 | /** 10 | * code : 200 11 | */ 12 | 13 | private int code; 14 | 15 | public void setCode(int code) { 16 | this.code = code; 17 | } 18 | 19 | public int getCode() { 20 | return code; 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /app/src/main/java/com/lqr/wechat/sdk/RongCloudSDK.java: -------------------------------------------------------------------------------- 1 | package com.lqr.wechat.sdk; 2 | 3 | /** 4 | * @创建者 CSDN_LQR 5 | * @描述 RongIMClient提供的SDK 6 | */ 7 | 8 | public class RongCloudSDK { 9 | 10 | private static RongCloudSDK mInstance; 11 | 12 | private RongCloudSDK() { 13 | } 14 | 15 | public static RongCloudSDK getInstance() { 16 | if (mInstance == null) { 17 | synchronized (RongCloudSDK.class) { 18 | if (mInstance == null) { 19 | mInstance = new RongCloudSDK(); 20 | } 21 | } 22 | } 23 | return mInstance; 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /app/src/main/java/com/lqr/wechat/ui/activity/AboutActivity.java: -------------------------------------------------------------------------------- 1 | package com.lqr.wechat.ui.activity; 2 | 3 | import com.lqr.wechat.R; 4 | import com.lqr.wechat.ui.base.BaseActivity; 5 | import com.lqr.wechat.ui.base.BasePresenter; 6 | 7 | /** 8 | * @创建者 CSDN_LQR 9 | * @描述 关于界面 10 | */ 11 | public class AboutActivity extends BaseActivity { 12 | 13 | @Override 14 | protected BasePresenter createPresenter() { 15 | return null; 16 | } 17 | 18 | @Override 19 | protected int provideContentViewId() { 20 | return R.layout.activity_about; 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /app/src/main/java/com/lqr/wechat/ui/activity/FriendCircleActivity.java: -------------------------------------------------------------------------------- 1 | package com.lqr.wechat.ui.activity; 2 | 3 | import com.lqr.wechat.ui.base.BaseActivity; 4 | import com.lqr.wechat.ui.presenter.FriendCircleAtPresenter; 5 | import com.lqr.wechat.ui.view.IFriendCircleAtView; 6 | 7 | /** 8 | * @创建者 CSDN_LQR 9 | * @描述 朋友圈 10 | */ 11 | public class FriendCircleActivity extends BaseActivity implements IFriendCircleAtView { 12 | 13 | @Override 14 | protected FriendCircleAtPresenter createPresenter() { 15 | return new FriendCircleAtPresenter(this); 16 | } 17 | 18 | @Override 19 | protected int provideContentViewId() { 20 | return 0; 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /app/src/main/java/com/lqr/wechat/ui/presenter/AddFriendAtPresenter.java: -------------------------------------------------------------------------------- 1 | package com.lqr.wechat.ui.presenter; 2 | 3 | import com.lqr.wechat.ui.base.BaseActivity; 4 | import com.lqr.wechat.ui.base.BasePresenter; 5 | import com.lqr.wechat.ui.view.IAddFriendAtView; 6 | 7 | 8 | public class AddFriendAtPresenter extends BasePresenter { 9 | 10 | public AddFriendAtPresenter(BaseActivity context) { 11 | super(context); 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /app/src/main/java/com/lqr/wechat/ui/presenter/DiscoveryFgPresenter.java: -------------------------------------------------------------------------------- 1 | package com.lqr.wechat.ui.presenter; 2 | 3 | import com.lqr.wechat.ui.base.BaseActivity; 4 | import com.lqr.wechat.ui.base.BasePresenter; 5 | import com.lqr.wechat.ui.view.IDiscoveryFgView; 6 | 7 | public class DiscoveryFgPresenter extends BasePresenter { 8 | 9 | public DiscoveryFgPresenter(BaseActivity context) { 10 | super(context); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /app/src/main/java/com/lqr/wechat/ui/presenter/FriendCircleAtPresenter.java: -------------------------------------------------------------------------------- 1 | package com.lqr.wechat.ui.presenter; 2 | 3 | import com.lqr.wechat.ui.base.BaseActivity; 4 | import com.lqr.wechat.ui.base.BasePresenter; 5 | import com.lqr.wechat.ui.view.IFriendCircleAtView; 6 | 7 | 8 | public class FriendCircleAtPresenter extends BasePresenter { 9 | 10 | public FriendCircleAtPresenter(BaseActivity context) { 11 | super(context); 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /app/src/main/java/com/lqr/wechat/ui/presenter/ScanAtPresenter.java: -------------------------------------------------------------------------------- 1 | package com.lqr.wechat.ui.presenter; 2 | 3 | import com.lqr.wechat.ui.base.BaseActivity; 4 | import com.lqr.wechat.ui.base.BasePresenter; 5 | import com.lqr.wechat.ui.view.IScanAtView; 6 | 7 | 8 | public class ScanAtPresenter extends BasePresenter { 9 | 10 | public ScanAtPresenter(BaseActivity context) { 11 | super(context); 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /app/src/main/java/com/lqr/wechat/ui/view/IAddFriendAtView.java: -------------------------------------------------------------------------------- 1 | package com.lqr.wechat.ui.view; 2 | 3 | 4 | public interface IAddFriendAtView { 5 | } 6 | -------------------------------------------------------------------------------- /app/src/main/java/com/lqr/wechat/ui/view/IContactsFgView.java: -------------------------------------------------------------------------------- 1 | package com.lqr.wechat.ui.view; 2 | 3 | 4 | import android.view.View; 5 | import android.widget.TextView; 6 | 7 | import com.lqr.recyclerview.LQRRecyclerView; 8 | 9 | public interface IContactsFgView { 10 | 11 | View getHeaderView(); 12 | 13 | LQRRecyclerView getRvContacts(); 14 | 15 | TextView getFooterView(); 16 | } 17 | -------------------------------------------------------------------------------- /app/src/main/java/com/lqr/wechat/ui/view/ICreateGroupAtView.java: -------------------------------------------------------------------------------- 1 | package com.lqr.wechat.ui.view; 2 | 3 | 4 | import android.view.View; 5 | import android.widget.Button; 6 | import android.widget.EditText; 7 | 8 | import com.lqr.recyclerview.LQRRecyclerView; 9 | 10 | public interface ICreateGroupAtView { 11 | 12 | Button getBtnToolbarSend(); 13 | 14 | LQRRecyclerView getRvContacts(); 15 | 16 | LQRRecyclerView getRvSelectedContacts(); 17 | 18 | EditText getEtKey(); 19 | 20 | View getHeaderView(); 21 | 22 | } 23 | -------------------------------------------------------------------------------- /app/src/main/java/com/lqr/wechat/ui/view/IDiscoveryFgView.java: -------------------------------------------------------------------------------- 1 | package com.lqr.wechat.ui.view; 2 | 3 | 4 | public interface IDiscoveryFgView { 5 | } 6 | -------------------------------------------------------------------------------- /app/src/main/java/com/lqr/wechat/ui/view/IFriendCircleAtView.java: -------------------------------------------------------------------------------- 1 | package com.lqr.wechat.ui.view; 2 | 3 | 4 | public interface IFriendCircleAtView { 5 | } 6 | -------------------------------------------------------------------------------- /app/src/main/java/com/lqr/wechat/ui/view/IGroupListAtView.java: -------------------------------------------------------------------------------- 1 | package com.lqr.wechat.ui.view; 2 | 3 | import android.widget.LinearLayout; 4 | 5 | import com.lqr.recyclerview.LQRRecyclerView; 6 | 7 | public interface IGroupListAtView { 8 | 9 | LinearLayout getLlGroups(); 10 | 11 | LQRRecyclerView getRvGroupList(); 12 | 13 | } 14 | -------------------------------------------------------------------------------- /app/src/main/java/com/lqr/wechat/ui/view/ILoginAtView.java: -------------------------------------------------------------------------------- 1 | package com.lqr.wechat.ui.view; 2 | 3 | import android.widget.EditText; 4 | 5 | /** 6 | * @创建者 CSDN_LQR 7 | * @描述 登录界面的View 8 | */ 9 | public interface ILoginAtView { 10 | 11 | EditText getEtPhone(); 12 | 13 | EditText getEtPwd(); 14 | } 15 | -------------------------------------------------------------------------------- /app/src/main/java/com/lqr/wechat/ui/view/IMainAtView.java: -------------------------------------------------------------------------------- 1 | package com.lqr.wechat.ui.view; 2 | 3 | 4 | import android.widget.TextView; 5 | 6 | public interface IMainAtView { 7 | 8 | TextView getTvMessageCount(); 9 | 10 | } 11 | -------------------------------------------------------------------------------- /app/src/main/java/com/lqr/wechat/ui/view/IMeFgView.java: -------------------------------------------------------------------------------- 1 | package com.lqr.wechat.ui.view; 2 | 3 | 4 | import android.widget.ImageView; 5 | import android.widget.TextView; 6 | 7 | public interface IMeFgView { 8 | ImageView getIvHeader(); 9 | 10 | TextView getTvName(); 11 | 12 | TextView getTvAccount(); 13 | } 14 | -------------------------------------------------------------------------------- /app/src/main/java/com/lqr/wechat/ui/view/IMyInfoAtView.java: -------------------------------------------------------------------------------- 1 | package com.lqr.wechat.ui.view; 2 | 3 | import android.widget.ImageView; 4 | 5 | import com.lqr.optionitemview.OptionItemView; 6 | 7 | public interface IMyInfoAtView { 8 | ImageView getIvHeader(); 9 | 10 | OptionItemView getOivName(); 11 | 12 | OptionItemView getOivAccount(); 13 | } 14 | -------------------------------------------------------------------------------- /app/src/main/java/com/lqr/wechat/ui/view/IMyLocationAtView.java: -------------------------------------------------------------------------------- 1 | package com.lqr.wechat.ui.view; 2 | 3 | 4 | import com.lqr.recyclerview.LQRRecyclerView; 5 | 6 | public interface IMyLocationAtView { 7 | LQRRecyclerView getRvPOI(); 8 | } 9 | -------------------------------------------------------------------------------- /app/src/main/java/com/lqr/wechat/ui/view/INewFriendAtView.java: -------------------------------------------------------------------------------- 1 | package com.lqr.wechat.ui.view; 2 | 3 | 4 | import android.widget.LinearLayout; 5 | 6 | import com.lqr.recyclerview.LQRRecyclerView; 7 | 8 | public interface INewFriendAtView { 9 | LinearLayout getLlNoNewFriend(); 10 | 11 | LinearLayout getLlHasNewFriend(); 12 | 13 | LQRRecyclerView getRvNewFriend(); 14 | } 15 | -------------------------------------------------------------------------------- /app/src/main/java/com/lqr/wechat/ui/view/IPostScriptAtView.java: -------------------------------------------------------------------------------- 1 | package com.lqr.wechat.ui.view; 2 | 3 | import android.widget.EditText; 4 | 5 | public interface IPostScriptAtView { 6 | EditText getEtMsg(); 7 | } 8 | -------------------------------------------------------------------------------- /app/src/main/java/com/lqr/wechat/ui/view/IRecentMessageFgView.java: -------------------------------------------------------------------------------- 1 | package com.lqr.wechat.ui.view; 2 | 3 | import com.lqr.recyclerview.LQRRecyclerView; 4 | 5 | public interface IRecentMessageFgView { 6 | 7 | LQRRecyclerView getRvRecentMessage(); 8 | 9 | } 10 | -------------------------------------------------------------------------------- /app/src/main/java/com/lqr/wechat/ui/view/IRegisterAtView.java: -------------------------------------------------------------------------------- 1 | package com.lqr.wechat.ui.view; 2 | 3 | 4 | import android.widget.Button; 5 | import android.widget.EditText; 6 | 7 | public interface IRegisterAtView { 8 | 9 | EditText getEtNickName(); 10 | 11 | EditText getEtPhone(); 12 | 13 | EditText getEtPwd(); 14 | 15 | EditText getEtVerifyCode(); 16 | 17 | Button getBtnSendCode(); 18 | } 19 | -------------------------------------------------------------------------------- /app/src/main/java/com/lqr/wechat/ui/view/IScanAtView.java: -------------------------------------------------------------------------------- 1 | package com.lqr.wechat.ui.view; 2 | 3 | 4 | public interface IScanAtView { 5 | } 6 | -------------------------------------------------------------------------------- /app/src/main/java/com/lqr/wechat/ui/view/ISearchUserAtView.java: -------------------------------------------------------------------------------- 1 | package com.lqr.wechat.ui.view; 2 | 3 | import android.widget.EditText; 4 | import android.widget.LinearLayout; 5 | import android.widget.RelativeLayout; 6 | 7 | public interface ISearchUserAtView { 8 | 9 | EditText getEtSearchContent(); 10 | 11 | RelativeLayout getRlNoResultTip(); 12 | 13 | LinearLayout getLlSearch(); 14 | } 15 | -------------------------------------------------------------------------------- /app/src/main/java/com/lqr/wechat/ui/view/ISessionAtView.java: -------------------------------------------------------------------------------- 1 | package com.lqr.wechat.ui.view; 2 | 3 | 4 | import android.widget.EditText; 5 | 6 | import com.lqr.recyclerview.LQRRecyclerView; 7 | 8 | import cn.bingoogolapple.refreshlayout.BGARefreshLayout; 9 | 10 | public interface ISessionAtView { 11 | 12 | BGARefreshLayout getRefreshLayout(); 13 | 14 | LQRRecyclerView getRvMsg(); 15 | 16 | EditText getEtContent(); 17 | } 18 | -------------------------------------------------------------------------------- /app/src/main/java/com/lqr/wechat/ui/view/ISessionInfoAtView.java: -------------------------------------------------------------------------------- 1 | package com.lqr.wechat.ui.view; 2 | 3 | 4 | import android.widget.Button; 5 | 6 | import com.kyleduo.switchbutton.SwitchButton; 7 | import com.lqr.optionitemview.OptionItemView; 8 | import com.lqr.recyclerview.LQRRecyclerView; 9 | 10 | public interface ISessionInfoAtView { 11 | LQRRecyclerView getRvMember(); 12 | 13 | OptionItemView getOivGroupName(); 14 | 15 | OptionItemView getOivNickNameInGroup(); 16 | 17 | SwitchButton getSbToTop(); 18 | 19 | Button getBtnQuit(); 20 | 21 | } 22 | -------------------------------------------------------------------------------- /app/src/main/java/com/lqr/wechat/util/IOUtils.java: -------------------------------------------------------------------------------- 1 | package com.lqr.wechat.util; 2 | 3 | import java.io.Closeable; 4 | import java.io.IOException; 5 | 6 | /** 7 | * @创建者 CSDN_LQR 8 | * @描述 IO流工具类 9 | */ 10 | public class IOUtils { 11 | /** 12 | * 关闭流 13 | */ 14 | public static boolean close(Closeable io) { 15 | if (io != null) { 16 | try { 17 | io.close(); 18 | } catch (IOException e) { 19 | LogUtils.e(e); 20 | } 21 | } 22 | return true; 23 | } 24 | } -------------------------------------------------------------------------------- /app/src/main/java/com/lqr/wechat/util/MimeTypeUtils.java: -------------------------------------------------------------------------------- 1 | package com.lqr.wechat.util; 2 | 3 | import android.webkit.MimeTypeMap; 4 | 5 | /** 6 | * Author: wyouflf 7 | * Date: 13-7-26 8 | * Time: 下午2:31 9 | */ 10 | public class MimeTypeUtils { 11 | 12 | private MimeTypeUtils() { 13 | } 14 | 15 | public static String getMimeType(final String fileName) { 16 | String result = "application/octet-stream"; 17 | int extPos = fileName.lastIndexOf("."); 18 | if (extPos != -1) { 19 | String ext = fileName.substring(extPos + 1); 20 | result = MimeTypeMap.getSingleton().getMimeTypeFromExtension(ext); 21 | } 22 | return result; 23 | } 24 | } -------------------------------------------------------------------------------- /app/src/main/java/com/lqr/wechat/widget/OnDetectScrollListener.java: -------------------------------------------------------------------------------- 1 | package com.lqr.wechat.widget; 2 | 3 | public interface OnDetectScrollListener { 4 | 5 | public void onUpScrolling(); 6 | 7 | public void onDownScrolling(); 8 | } -------------------------------------------------------------------------------- /app/src/main/res/anim/slide_left_in.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 8 | 9 | -------------------------------------------------------------------------------- /app/src/main/res/anim/slide_left_out.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 8 | 9 | -------------------------------------------------------------------------------- /app/src/main/res/anim/slide_right_in.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 8 | 9 | -------------------------------------------------------------------------------- /app/src/main/res/anim/slide_right_out.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 8 | 9 | -------------------------------------------------------------------------------- /app/src/main/res/color/selector_login_btn.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ssdk_oks_ptr_ptr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/drawable-hdpi/ssdk_oks_ptr_ptr.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ssdk_auth_title_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/drawable-xhdpi/ssdk_auth_title_back.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ssdk_back_arr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/drawable-xhdpi/ssdk_back_arr.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ssdk_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/drawable-xhdpi/ssdk_logo.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ssdk_oks_classic_alipay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/drawable-xhdpi/ssdk_oks_classic_alipay.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ssdk_oks_classic_alipaymoments.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/drawable-xhdpi/ssdk_oks_classic_alipaymoments.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ssdk_oks_classic_bluetooth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/drawable-xhdpi/ssdk_oks_classic_bluetooth.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ssdk_oks_classic_check_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/drawable-xhdpi/ssdk_oks_classic_check_checked.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ssdk_oks_classic_check_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/drawable-xhdpi/ssdk_oks_classic_check_default.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ssdk_oks_classic_dingding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/drawable-xhdpi/ssdk_oks_classic_dingding.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ssdk_oks_classic_douban.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/drawable-xhdpi/ssdk_oks_classic_douban.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ssdk_oks_classic_dropbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/drawable-xhdpi/ssdk_oks_classic_dropbox.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ssdk_oks_classic_email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/drawable-xhdpi/ssdk_oks_classic_email.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ssdk_oks_classic_evernote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/drawable-xhdpi/ssdk_oks_classic_evernote.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ssdk_oks_classic_facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/drawable-xhdpi/ssdk_oks_classic_facebook.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ssdk_oks_classic_facebookmessenger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/drawable-xhdpi/ssdk_oks_classic_facebookmessenger.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ssdk_oks_classic_flickr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/drawable-xhdpi/ssdk_oks_classic_flickr.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ssdk_oks_classic_foursquare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/drawable-xhdpi/ssdk_oks_classic_foursquare.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ssdk_oks_classic_googleplus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/drawable-xhdpi/ssdk_oks_classic_googleplus.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ssdk_oks_classic_instagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/drawable-xhdpi/ssdk_oks_classic_instagram.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ssdk_oks_classic_instapaper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/drawable-xhdpi/ssdk_oks_classic_instapaper.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ssdk_oks_classic_kaixin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/drawable-xhdpi/ssdk_oks_classic_kaixin.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ssdk_oks_classic_kakaostory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/drawable-xhdpi/ssdk_oks_classic_kakaostory.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ssdk_oks_classic_kakaotalk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/drawable-xhdpi/ssdk_oks_classic_kakaotalk.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ssdk_oks_classic_laiwang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/drawable-xhdpi/ssdk_oks_classic_laiwang.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ssdk_oks_classic_laiwangmoments.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/drawable-xhdpi/ssdk_oks_classic_laiwangmoments.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ssdk_oks_classic_line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/drawable-xhdpi/ssdk_oks_classic_line.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ssdk_oks_classic_linkedin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/drawable-xhdpi/ssdk_oks_classic_linkedin.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ssdk_oks_classic_meipai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/drawable-xhdpi/ssdk_oks_classic_meipai.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ssdk_oks_classic_mingdao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/drawable-xhdpi/ssdk_oks_classic_mingdao.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ssdk_oks_classic_pinterest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/drawable-xhdpi/ssdk_oks_classic_pinterest.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ssdk_oks_classic_pocket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/drawable-xhdpi/ssdk_oks_classic_pocket.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ssdk_oks_classic_qq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/drawable-xhdpi/ssdk_oks_classic_qq.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ssdk_oks_classic_qzone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/drawable-xhdpi/ssdk_oks_classic_qzone.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ssdk_oks_classic_renren.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/drawable-xhdpi/ssdk_oks_classic_renren.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ssdk_oks_classic_shortmessage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/drawable-xhdpi/ssdk_oks_classic_shortmessage.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ssdk_oks_classic_sinaweibo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/drawable-xhdpi/ssdk_oks_classic_sinaweibo.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ssdk_oks_classic_tencentweibo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/drawable-xhdpi/ssdk_oks_classic_tencentweibo.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ssdk_oks_classic_tumblr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/drawable-xhdpi/ssdk_oks_classic_tumblr.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ssdk_oks_classic_twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/drawable-xhdpi/ssdk_oks_classic_twitter.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ssdk_oks_classic_vkontakte.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/drawable-xhdpi/ssdk_oks_classic_vkontakte.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ssdk_oks_classic_wechat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/drawable-xhdpi/ssdk_oks_classic_wechat.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ssdk_oks_classic_wechatfavorite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/drawable-xhdpi/ssdk_oks_classic_wechatfavorite.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ssdk_oks_classic_wechatmoments.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/drawable-xhdpi/ssdk_oks_classic_wechatmoments.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ssdk_oks_classic_whatsapp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/drawable-xhdpi/ssdk_oks_classic_whatsapp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ssdk_oks_classic_yixin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/drawable-xhdpi/ssdk_oks_classic_yixin.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ssdk_oks_classic_yixinmoments.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/drawable-xhdpi/ssdk_oks_classic_yixinmoments.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ssdk_oks_classic_youdao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/drawable-xhdpi/ssdk_oks_classic_youdao.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ssdk_oks_classic_youtube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/drawable-xhdpi/ssdk_oks_classic_youtube.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ssdk_title_div.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/drawable-xhdpi/ssdk_title_div.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/audio_animation_left_list.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 11 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/audio_animation_right_list.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 11 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/bg_voice_popup.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/drawable/bg_voice_popup.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/bg_white.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/checkbox_style.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/corner_voice_style.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/dialog_waiting.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_camera_enhance_black_24dp.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/img_bubble_receive.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/drawable/img_bubble_receive.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/img_bubble_send.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/drawable/img_bubble_send.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/img_file_receive.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/drawable/img_file_receive.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/img_file_send.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/drawable/img_file_send.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/img_location_receive.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/drawable/img_location_receive.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/img_location_send.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/drawable/img_location_send.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/ios_thumb_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/rp_receive.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/drawable/rp_receive.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/rp_send.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/drawable/rp_send.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/selector_edit_focus.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/selector_login_btn.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/selector_option_item.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/selector_register_send_code.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/selector_session_func.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/shadow.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/drawable/shadow.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/shape_bottom_gray.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 11 | 12 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/shape_bottom_green.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 11 | 12 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/shape_btn_delete.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 8 | 9 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/shape_contact_letter_bg.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/shape_corner_rect_solid_gray.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/shape_corner_rect_solid_white.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/shape_dot_horizontal_line.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/shape_dot_vertical_line.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/shape_horizontal_line.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/shape_new_friend_agree.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/shape_notification_bg.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 8 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/shape_red_dot.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/shape_register_send_code_disable.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/shape_register_send_code_enable.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/shape_session_btn_send.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/shape_session_btn_voice_normal.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/shape_session_btn_voice_press.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/shape_session_func_normal_bg.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 9 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/shape_session_func_press_bg.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 9 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/shape_splash_login.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/shape_splash_register.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/shape_toolbar_btn_send.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/shape_user_info_add_to_contact.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/shape_user_info_send_msg.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/shape_vertical_line.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/ssdk_oks_classic_platform_cell_back.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/ssdk_oks_classic_progressbar.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 12 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_friend_circle.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_qr_code_card.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_take_photo.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 11 | 12 | 19 | 20 | -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_webview.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 9 | 10 | 14 | -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_recent_message.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /app/src/main/res/layout/item_selected_contact.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 13 | -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/_bg_from_hongbao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-hdpi/_bg_from_hongbao.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/_bg_to_hongbao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-hdpi/_bg_to_hongbao.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/audio_animation_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-hdpi/audio_animation_left.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/audio_animation_list_left_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-hdpi/audio_animation_list_left_1.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/audio_animation_list_left_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-hdpi/audio_animation_list_left_2.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/audio_animation_list_left_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-hdpi/audio_animation_list_left_3.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/audio_animation_list_right_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-hdpi/audio_animation_list_right_1.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/audio_animation_list_right_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-hdpi/audio_animation_list_right_2.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/audio_animation_list_right_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-hdpi/audio_animation_list_right_3.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/audio_animation_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-hdpi/audio_animation_right.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/avatar_def.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-hdpi/avatar_def.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/bg_unread.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-hdpi/bg_unread.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/btn_location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-hdpi/btn_location.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/contacts_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-hdpi/contacts_normal.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/contacts_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-hdpi/contacts_press.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/default_header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-hdpi/default_header.jpg -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/default_img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-hdpi/default_img.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/default_img_failed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-hdpi/default_img_failed.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/default_location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-hdpi/default_location.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/discovery_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-hdpi/discovery_normal.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/discovery_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-hdpi/discovery_press.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-hdpi/ic_add.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_add_friend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-hdpi/ic_add_friend.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_add_team_member.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-hdpi/ic_add_team_member.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_around_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-hdpi/ic_around_blue.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-hdpi/ic_back.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_card_pack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-hdpi/ic_card_pack.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_card_pack1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-hdpi/ic_card_pack1.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_cheat_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-hdpi/ic_cheat_add.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_cheat_emo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-hdpi/ic_cheat_emo.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_cheat_keyboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-hdpi/ic_cheat_keyboard.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_cheat_voice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-hdpi/ic_cheat_voice.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_computer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-hdpi/ic_computer.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_create_group_cheat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-hdpi/ic_create_group_cheat.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-hdpi/ic_delete.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_delete_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-hdpi/ic_delete_white.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_emo_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-hdpi/ic_emo_yellow.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_excel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-hdpi/ic_excel.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_exit_account.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-hdpi/ic_exit_account.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_exit_app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-hdpi/ic_exit_app.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-hdpi/ic_file.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_file_wall_collect_gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-hdpi/ic_file_wall_collect_gray.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_file_wall_collect_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-hdpi/ic_file_wall_collect_white.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_file_wall_del_gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-hdpi/ic_file_wall_del_gray.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_file_wall_del_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-hdpi/ic_file_wall_del_white.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_file_wall_share_gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-hdpi/ic_file_wall_share_gray.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_file_wall_share_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-hdpi/ic_file_wall_share_white.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_friend_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-hdpi/ic_friend_circle.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_friend_circle_gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-hdpi/ic_friend_circle_gray.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_friend_complain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-hdpi/ic_friend_complain.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_friend_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-hdpi/ic_friend_delete.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_friend_female.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-hdpi/ic_friend_female.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_friend_forbid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-hdpi/ic_friend_forbid.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_friend_male.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-hdpi/ic_friend_male.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_friend_more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-hdpi/ic_friend_more.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_friend_remark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-hdpi/ic_friend_remark.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_friend_search_gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-hdpi/ic_friend_search_gray.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_friend_search_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-hdpi/ic_friend_search_green.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_friend_share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-hdpi/ic_friend_share.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_friend_start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-hdpi/ic_friend_start.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_friend_to_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-hdpi/ic_friend_to_desktop.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_func_business_card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-hdpi/ic_func_business_card.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_func_collectioin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-hdpi/ic_func_collectioin.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_func_location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-hdpi/ic_func_location.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_func_pic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-hdpi/ic_func_pic.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_func_record.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-hdpi/ic_func_record.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_func_red_pack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-hdpi/ic_func_red_pack.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_func_red_packet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-hdpi/ic_func_red_packet.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_func_shot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-hdpi/ic_func_shot.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_func_transfer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-hdpi/ic_func_transfer.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_func_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-hdpi/ic_func_video.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_func_voice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-hdpi/ic_func_voice.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_game.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-hdpi/ic_game.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_gender_female.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-hdpi/ic_gender_female.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_gender_male.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-hdpi/ic_gender_male.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_group_cheat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-hdpi/ic_group_cheat.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_help_feedback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-hdpi/ic_help_feedback.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_huanlin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-hdpi/ic_huanlin.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_new_friend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-hdpi/ic_new_friend.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_offical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-hdpi/ic_offical.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_payment_received.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-hdpi/ic_payment_received.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_photo_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-hdpi/ic_photo_blue.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_photo_blue1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-hdpi/ic_photo_blue1.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_player_mode_video_wall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-hdpi/ic_player_mode_video_wall.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_ppt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-hdpi/ic_ppt.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_qr_code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-hdpi/ic_qr_code.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_question.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-hdpi/ic_question.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_radar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-hdpi/ic_radar.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_remove_team_member.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-hdpi/ic_remove_team_member.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_scan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-hdpi/ic_scan.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_scan_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-hdpi/ic_scan_blue.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_scan_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-hdpi/ic_scan_white.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-hdpi/ic_search.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_search1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-hdpi/ic_search1.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_search2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-hdpi/ic_search2.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_search3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-hdpi/ic_search3.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_see_pwd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-hdpi/ic_see_pwd.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_sellection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-hdpi/ic_sellection.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_sellection1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-hdpi/ic_sellection1.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_session_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-hdpi/ic_session_info.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_setting_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-hdpi/ic_setting_blue.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_shake_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-hdpi/ic_shake_blue.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_shop_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-hdpi/ic_shop_red.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_sound_tip_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-hdpi/ic_sound_tip_close.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_sound_tip_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-hdpi/ic_sound_tip_open.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_tag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-hdpi/ic_tag.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_volume_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-hdpi/ic_volume_0.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_volume_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-hdpi/ic_volume_1.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_volume_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-hdpi/ic_volume_2.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_volume_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-hdpi/ic_volume_3.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_volume_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-hdpi/ic_volume_4.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_volume_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-hdpi/ic_volume_5.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_volume_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-hdpi/ic_volume_6.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_volume_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-hdpi/ic_volume_7.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_volume_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-hdpi/ic_volume_8.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_volume_cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-hdpi/ic_volume_cancel.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_volume_wraning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-hdpi/ic_volume_wraning.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_wallet_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-hdpi/ic_wallet_blue.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_wallet_blue1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-hdpi/ic_wallet_blue1.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_word.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-hdpi/ic_word.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_zip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-hdpi/ic_zip.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/img_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-hdpi/img_error.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/img_video_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-hdpi/img_video_default.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/img_video_play_session.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-hdpi/img_video_play_session.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/img_weixin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-hdpi/img_weixin.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/img_weixin_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-hdpi/img_weixin_small.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/list_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-hdpi/list_selected.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/list_unselected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-hdpi/list_unselected.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/me_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-hdpi/me_normal.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/me_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-hdpi/me_press.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/message_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-hdpi/message_normal.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/message_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-hdpi/message_press.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/nim_image_download_failed.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-hdpi/nim_image_download_failed.jpg -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/rainbow_ic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-hdpi/rainbow_ic.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/splash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-hdpi/splash.jpg -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/abo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-xxhdpi/abo.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/abv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-xxhdpi/abv.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/abw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-xxhdpi/abw.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/abz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-xxhdpi/abz.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/acp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-xxhdpi/acp.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ah6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-xxhdpi/ah6.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ah7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-xxhdpi/ah7.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ah8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-xxhdpi/ah8.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-xxhdpi/ale.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/alf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-xxhdpi/alf.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/alh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-xxhdpi/alh.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ali.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-xxhdpi/ali.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/alj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-xxhdpi/alj.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/alk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-xxhdpi/alk.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-xxhdpi/all.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/alm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-xxhdpi/alm.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/aln.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-xxhdpi/aln.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/arm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-xxhdpi/arm.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/checkbox_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-xxhdpi/checkbox_checked.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/checkbox_checked_disable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-xxhdpi/checkbox_checked_disable.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/checkbox_normal_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-xxhdpi/checkbox_normal_black.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/checkbox_normal_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-xxhdpi/checkbox_normal_white.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/contacts_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-xxhdpi/contacts_normal.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/contacts_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-xxhdpi/contacts_press.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/da.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-xxhdpi/da.jpg -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/dialog_toast_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-xxhdpi/dialog_toast_bg.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/discovery_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-xxhdpi/discovery_normal.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/discovery_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-xxhdpi/discovery_press.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_phone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-xxhdpi/ic_phone.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ios_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-xxhdpi/ios_thumb.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ios_thumb_disable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-xxhdpi/ios_thumb_disable.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/loc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-xxhdpi/loc.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/me_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-xxhdpi/me_normal.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/me_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-xxhdpi/me_press.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/message_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-xxhdpi/message_normal.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/message_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-xxhdpi/message_press.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/navigation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-xxhdpi/navigation.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/schedule_end_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-xxhdpi/schedule_end_icon.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-xxhdpi/star.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/startwo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-xxhdpi/startwo.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/toast_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-xxhdpi/toast_bg.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/zf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/app/src/main/res/mipmap-xxhdpi/zf.png -------------------------------------------------------------------------------- /app/src/main/res/values-en/rc_string.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Custom Service Have Quit 5 | Failed Connect Custom Service 6 | Real-time Location session ended. 7 | 8 | You have a new message 9 | 10 | %1$s sent %2$d messages 11 | %1$d contacts sent %2$d messages 12 | 13 | -------------------------------------------------------------------------------- /app/src/main/res/values-sw/rc_notification_string.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Umepokea Ujumbe Mpya 5 | %1$s ametuma ujumbe  %2$d 6 | Mrafiki.%1$d wametuma ujumbe  %2$d 7 | -------------------------------------------------------------------------------- /app/src/main/res/values/biv_attrs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 32px 4 | 32px 5 | 6 | 7 | 58px 8 | 54px 9 | 10 | 11 | 25px 12 | 15px 13 | 14 | 15 | 42px 16 | 40px 17 | 40px 18 | 19 | -------------------------------------------------------------------------------- /app/src/main/res/values/rc_configuration.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7950 5 | 6 | 7 | 85 8 | 9 | 960 10 | 11 | false 12 | 13 | 14 | /sdcard/ 15 | 16 | false 17 | 18 | -------------------------------------------------------------------------------- /app/src/main/res/values/rc_lib_string.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 客服已结束 5 | 连接客服失败 6 | 位置共享已结束 7 | 8 | 您有了一条新消息 9 | %1$s发来了%2$d条消息 10 | %1$d个联系人发来了%2$d条消息 11 | -------------------------------------------------------------------------------- /app/src/main/res/values/ssdk_oks_color_drawables.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #ffffffff 4 | #ffeeeeee 5 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/values/ssdk_oks_strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 分享 4 | 分享操作正在后台进行… 5 | 分享失败 6 | 分享成功 7 | 分享已取消 8 | 取消 9 | 图文分享 10 | 确定 11 | 联系人 12 | 下拉刷新 13 | 松开刷新 14 | 刷新中… 15 | 16 | -------------------------------------------------------------------------------- /app/src/test/java/com/lqr/wechat/ExampleUnitTest.java: -------------------------------------------------------------------------------- 1 | package com.lqr.wechat; 2 | 3 | import org.junit.Test; 4 | 5 | import static org.junit.Assert.*; 6 | 7 | /** 8 | * Example local unit test, which will execute on the development machine (host). 9 | * 10 | * @see Testing documentation 11 | */ 12 | public class ExampleUnitTest { 13 | @Test 14 | public void addition_isCorrect() throws Exception { 15 | assertEquals(4, 2 + 2); 16 | } 17 | } -------------------------------------------------------------------------------- /build.gradle: -------------------------------------------------------------------------------- 1 | // Top-level build file where you can add configuration options common to all sub-projects/modules. 2 | 3 | buildscript { 4 | repositories { 5 | jcenter() 6 | } 7 | dependencies { 8 | classpath 'com.android.tools.build:gradle:2.3.0' 9 | classpath 'me.tatarka:gradle-retrolambda:3.2.5' 10 | 11 | // NOTE: Do not place your application dependencies here; they belong 12 | // in the individual module build.gradle files 13 | } 14 | } 15 | 16 | allprojects { 17 | repositories { 18 | jcenter() 19 | } 20 | } 21 | 22 | task clean(type: Delete) { 23 | delete rootProject.buildDir 24 | } 25 | -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- 1 | # Project-wide Gradle settings. 2 | 3 | # IDE (e.g. Android Studio) users: 4 | # Gradle settings configured through the IDE *will override* 5 | # any settings specified in this file. 6 | 7 | # For more details on how to configure your build environment visit 8 | # http://www.gradle.org/docs/current/userguide/build_environment.html 9 | 10 | # Specifies the JVM arguments used for the daemon process. 11 | # The setting is particularly useful for tweaking memory settings. 12 | org.gradle.jvmargs=-Xmx1536m 13 | 14 | # When configured, Gradle will run in incubating parallel mode. 15 | # This option should only be used with decoupled projects. More details, visit 16 | # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects 17 | # org.gradle.parallel=true 18 | -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Mon Mar 06 16:00:31 CST 2017 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | #distributionUrl=https\://services.gradle.org/distributions/gradle-3.4-all.zip 7 | distributionUrl=https\://services.gradle.org/distributions/gradle-3.3-all.zip 8 | -------------------------------------------------------------------------------- /screenshots/1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/screenshots/1.gif -------------------------------------------------------------------------------- /screenshots/10.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/screenshots/10.gif -------------------------------------------------------------------------------- /screenshots/11.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/screenshots/11.gif -------------------------------------------------------------------------------- /screenshots/12.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/screenshots/12.gif -------------------------------------------------------------------------------- /screenshots/13.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/screenshots/13.gif -------------------------------------------------------------------------------- /screenshots/14.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/screenshots/14.gif -------------------------------------------------------------------------------- /screenshots/2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/screenshots/2.gif -------------------------------------------------------------------------------- /screenshots/3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/screenshots/3.gif -------------------------------------------------------------------------------- /screenshots/4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/screenshots/4.gif -------------------------------------------------------------------------------- /screenshots/5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/screenshots/5.gif -------------------------------------------------------------------------------- /screenshots/6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/screenshots/6.gif -------------------------------------------------------------------------------- /screenshots/7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/screenshots/7.gif -------------------------------------------------------------------------------- /screenshots/8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/screenshots/8.gif -------------------------------------------------------------------------------- /screenshots/9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/screenshots/9.gif -------------------------------------------------------------------------------- /screenshots/alipay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/screenshots/alipay.png -------------------------------------------------------------------------------- /screenshots/wechat_pay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitLqr/LQRWeChat/6fbf1e8240cb3c6d0d3c1ad43b5721a1a8c2d897/screenshots/wechat_pay.png -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | --------------------------------------------------------------------------------