├── .github └── ISSUE_TEMPLATE ├── .gitignore ├── .gitmodules ├── .idea ├── caches │ └── build_file_checksums.ser ├── codeStyles │ └── Project.xml ├── misc.xml ├── modules.xml ├── runConfigurations.xml └── vcs.xml ├── .travis.yml ├── LICENSE ├── README.en.md ├── README.md ├── app ├── build.gradle └── src │ ├── main │ ├── AndroidManifest.xml │ ├── assets │ │ ├── image_recall_en.jpg │ │ ├── image_recall_zh_cn.jpg │ │ └── xposed_init │ ├── ic_launcher-web.png │ ├── kotlin │ │ └── com │ │ │ └── gh0u1l5 │ │ │ └── wechatmagician │ │ │ ├── Global.kt │ │ │ ├── backend │ │ │ ├── WechatHook.kt │ │ │ ├── WechatPlugins.kt │ │ │ ├── plugins │ │ │ │ ├── AdBlock.kt │ │ │ │ ├── Alert.kt │ │ │ │ ├── AntiRevoke.kt │ │ │ │ ├── AntiSnsDelete.kt │ │ │ │ ├── AutoLogin.kt │ │ │ │ ├── ChatroomHider.kt │ │ │ │ ├── Developer.kt │ │ │ │ ├── Donate.kt │ │ │ │ ├── Limits.kt │ │ │ │ ├── MarkAllAsRead.kt │ │ │ │ ├── ObjectsHunter.kt │ │ │ │ ├── SecretFriend.kt │ │ │ │ ├── SnsBlock.kt │ │ │ │ └── SnsForward.kt │ │ │ └── storage │ │ │ │ ├── Preferences.kt │ │ │ │ ├── Strings.kt │ │ │ │ ├── cache │ │ │ │ ├── BaseCache.kt │ │ │ │ ├── MessageCache.kt │ │ │ │ └── SnsCache.kt │ │ │ │ ├── database │ │ │ │ ├── MainDatabase.kt │ │ │ │ └── SnsDatabase.kt │ │ │ │ └── list │ │ │ │ ├── BaseList.kt │ │ │ │ ├── ChatroomHideList.kt │ │ │ │ ├── PersistentList.kt │ │ │ │ ├── SecretFriendList.kt │ │ │ │ └── SnsBlacklist.kt │ │ │ ├── frontend │ │ │ ├── MainActivity.kt │ │ │ ├── PrefProvider.kt │ │ │ ├── WMApplication.kt │ │ │ ├── fragments │ │ │ │ ├── DonateFragment.kt │ │ │ │ ├── PrefFragment.kt │ │ │ │ ├── StatusFragment.kt │ │ │ │ └── SupportFragment.kt │ │ │ ├── wechat │ │ │ │ ├── ConversationAdapter.kt │ │ │ │ ├── ListPopupWindowPosition.kt │ │ │ │ └── StringListAdapter.kt │ │ │ └── widget │ │ │ │ ├── PasswordPreference.kt │ │ │ │ └── PasswordSwitchPreference.kt │ │ │ └── util │ │ │ ├── AlipayUtil.kt │ │ │ ├── DownloadUtil.kt │ │ │ ├── IPCUtil.kt │ │ │ ├── ImageUtil.kt │ │ │ ├── LocaleUtil.kt │ │ │ ├── MessageUtil.kt │ │ │ ├── PasswordUtil.kt │ │ │ ├── UpdateUtil.kt │ │ │ └── ViewUtil.kt │ └── res │ │ ├── drawable-hdpi │ │ └── ic_alipay_mark.png │ │ ├── drawable-mdpi │ │ └── ic_github_mark.png │ │ ├── drawable-xhdpi │ │ ├── ic_alipay_mark.png │ │ └── ic_github_mark.png │ │ ├── drawable-xxhdpi │ │ ├── ic_alipay_mark.png │ │ └── ic_github_mark.png │ │ ├── drawable │ │ ├── ic_component_invalid.xml │ │ ├── ic_component_valid.xml │ │ ├── ic_component_warn.xml │ │ ├── ic_email.xml │ │ ├── ic_github_logo.png │ │ ├── ic_menu_developer.xml │ │ ├── ic_menu_donate.xml │ │ ├── ic_menu_settings.xml │ │ ├── ic_menu_status.xml │ │ ├── ic_menu_support.xml │ │ ├── ic_status_error.xml │ │ ├── ic_status_ok.xml │ │ ├── ic_wepay_logo.xml │ │ └── side_nav_bar.xml │ │ ├── layout │ │ ├── activity_main.xml │ │ ├── app_bar_main.xml │ │ ├── content_main.xml │ │ ├── fragment_donate.xml │ │ ├── fragment_status.xml │ │ ├── fragment_support.xml │ │ └── nav_header_main.xml │ │ ├── menu │ │ └── activity_main_drawer.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── values-zh │ │ └── strings.xml │ │ ├── values │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── ic_launcher_background.xml │ │ ├── strings.xml │ │ └── styles.xml │ │ └── xml │ │ ├── backup_descriptor.xml │ │ ├── file_paths.xml │ │ ├── pref_developer.xml │ │ └── pref_settings.xml │ └── test │ └── kotlin │ └── com │ └── gh0u1l5 │ └── wechatmagician │ └── util │ └── MessageUtilUnitTest.kt ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── image ├── interface-1.en.png ├── interface-1.zh.png ├── interface-2.en.png ├── interface-2.zh.png ├── interface-3.en.png ├── interface-3.zh.png ├── interface-4.en.png ├── interface-4.zh.png ├── qrcode_alipay.jpg ├── qrcode_qq_group.jpg ├── qrcode_tenpay.png ├── qrcode_wechat_group.jpg ├── sample-1.en.png ├── sample-1.zh.png ├── sample-2.en.png ├── sample-2.zh.png ├── sample-3.en.png ├── sample-3.zh.png ├── sample-4.en.png ├── sample-4.zh.png ├── sample-5.en.png ├── sample-5.zh.png ├── sample-6.en.png ├── sample-6.zh.png ├── sample-7.en.png ├── sample-7.zh.png ├── sample-8.en.png └── sample-8.zh.png └── settings.gradle /.github/ISSUE_TEMPLATE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/.github/ISSUE_TEMPLATE -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/.gitmodules -------------------------------------------------------------------------------- /.idea/caches/build_file_checksums.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/.idea/caches/build_file_checksums.ser -------------------------------------------------------------------------------- /.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/LICENSE -------------------------------------------------------------------------------- /README.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/README.en.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/README.md -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/assets/image_recall_en.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/app/src/main/assets/image_recall_en.jpg -------------------------------------------------------------------------------- /app/src/main/assets/image_recall_zh_cn.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/app/src/main/assets/image_recall_zh_cn.jpg -------------------------------------------------------------------------------- /app/src/main/assets/xposed_init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/app/src/main/assets/xposed_init -------------------------------------------------------------------------------- /app/src/main/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/app/src/main/ic_launcher-web.png -------------------------------------------------------------------------------- /app/src/main/kotlin/com/gh0u1l5/wechatmagician/Global.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/app/src/main/kotlin/com/gh0u1l5/wechatmagician/Global.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/gh0u1l5/wechatmagician/backend/WechatHook.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/app/src/main/kotlin/com/gh0u1l5/wechatmagician/backend/WechatHook.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/gh0u1l5/wechatmagician/backend/WechatPlugins.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/app/src/main/kotlin/com/gh0u1l5/wechatmagician/backend/WechatPlugins.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/gh0u1l5/wechatmagician/backend/plugins/AdBlock.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/app/src/main/kotlin/com/gh0u1l5/wechatmagician/backend/plugins/AdBlock.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/gh0u1l5/wechatmagician/backend/plugins/Alert.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/app/src/main/kotlin/com/gh0u1l5/wechatmagician/backend/plugins/Alert.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/gh0u1l5/wechatmagician/backend/plugins/AntiRevoke.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/app/src/main/kotlin/com/gh0u1l5/wechatmagician/backend/plugins/AntiRevoke.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/gh0u1l5/wechatmagician/backend/plugins/AntiSnsDelete.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/app/src/main/kotlin/com/gh0u1l5/wechatmagician/backend/plugins/AntiSnsDelete.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/gh0u1l5/wechatmagician/backend/plugins/AutoLogin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/app/src/main/kotlin/com/gh0u1l5/wechatmagician/backend/plugins/AutoLogin.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/gh0u1l5/wechatmagician/backend/plugins/ChatroomHider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/app/src/main/kotlin/com/gh0u1l5/wechatmagician/backend/plugins/ChatroomHider.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/gh0u1l5/wechatmagician/backend/plugins/Developer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/app/src/main/kotlin/com/gh0u1l5/wechatmagician/backend/plugins/Developer.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/gh0u1l5/wechatmagician/backend/plugins/Donate.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/app/src/main/kotlin/com/gh0u1l5/wechatmagician/backend/plugins/Donate.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/gh0u1l5/wechatmagician/backend/plugins/Limits.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/app/src/main/kotlin/com/gh0u1l5/wechatmagician/backend/plugins/Limits.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/gh0u1l5/wechatmagician/backend/plugins/MarkAllAsRead.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/app/src/main/kotlin/com/gh0u1l5/wechatmagician/backend/plugins/MarkAllAsRead.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/gh0u1l5/wechatmagician/backend/plugins/ObjectsHunter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/app/src/main/kotlin/com/gh0u1l5/wechatmagician/backend/plugins/ObjectsHunter.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/gh0u1l5/wechatmagician/backend/plugins/SecretFriend.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/app/src/main/kotlin/com/gh0u1l5/wechatmagician/backend/plugins/SecretFriend.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/gh0u1l5/wechatmagician/backend/plugins/SnsBlock.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/app/src/main/kotlin/com/gh0u1l5/wechatmagician/backend/plugins/SnsBlock.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/gh0u1l5/wechatmagician/backend/plugins/SnsForward.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/app/src/main/kotlin/com/gh0u1l5/wechatmagician/backend/plugins/SnsForward.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/gh0u1l5/wechatmagician/backend/storage/Preferences.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/app/src/main/kotlin/com/gh0u1l5/wechatmagician/backend/storage/Preferences.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/gh0u1l5/wechatmagician/backend/storage/Strings.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/app/src/main/kotlin/com/gh0u1l5/wechatmagician/backend/storage/Strings.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/gh0u1l5/wechatmagician/backend/storage/cache/BaseCache.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/app/src/main/kotlin/com/gh0u1l5/wechatmagician/backend/storage/cache/BaseCache.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/gh0u1l5/wechatmagician/backend/storage/cache/MessageCache.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/app/src/main/kotlin/com/gh0u1l5/wechatmagician/backend/storage/cache/MessageCache.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/gh0u1l5/wechatmagician/backend/storage/cache/SnsCache.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/app/src/main/kotlin/com/gh0u1l5/wechatmagician/backend/storage/cache/SnsCache.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/gh0u1l5/wechatmagician/backend/storage/database/MainDatabase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/app/src/main/kotlin/com/gh0u1l5/wechatmagician/backend/storage/database/MainDatabase.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/gh0u1l5/wechatmagician/backend/storage/database/SnsDatabase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/app/src/main/kotlin/com/gh0u1l5/wechatmagician/backend/storage/database/SnsDatabase.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/gh0u1l5/wechatmagician/backend/storage/list/BaseList.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/app/src/main/kotlin/com/gh0u1l5/wechatmagician/backend/storage/list/BaseList.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/gh0u1l5/wechatmagician/backend/storage/list/ChatroomHideList.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/app/src/main/kotlin/com/gh0u1l5/wechatmagician/backend/storage/list/ChatroomHideList.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/gh0u1l5/wechatmagician/backend/storage/list/PersistentList.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/app/src/main/kotlin/com/gh0u1l5/wechatmagician/backend/storage/list/PersistentList.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/gh0u1l5/wechatmagician/backend/storage/list/SecretFriendList.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/app/src/main/kotlin/com/gh0u1l5/wechatmagician/backend/storage/list/SecretFriendList.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/gh0u1l5/wechatmagician/backend/storage/list/SnsBlacklist.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/app/src/main/kotlin/com/gh0u1l5/wechatmagician/backend/storage/list/SnsBlacklist.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/gh0u1l5/wechatmagician/frontend/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/app/src/main/kotlin/com/gh0u1l5/wechatmagician/frontend/MainActivity.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/gh0u1l5/wechatmagician/frontend/PrefProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/app/src/main/kotlin/com/gh0u1l5/wechatmagician/frontend/PrefProvider.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/gh0u1l5/wechatmagician/frontend/WMApplication.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/app/src/main/kotlin/com/gh0u1l5/wechatmagician/frontend/WMApplication.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/gh0u1l5/wechatmagician/frontend/fragments/DonateFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/app/src/main/kotlin/com/gh0u1l5/wechatmagician/frontend/fragments/DonateFragment.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/gh0u1l5/wechatmagician/frontend/fragments/PrefFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/app/src/main/kotlin/com/gh0u1l5/wechatmagician/frontend/fragments/PrefFragment.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/gh0u1l5/wechatmagician/frontend/fragments/StatusFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/app/src/main/kotlin/com/gh0u1l5/wechatmagician/frontend/fragments/StatusFragment.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/gh0u1l5/wechatmagician/frontend/fragments/SupportFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/app/src/main/kotlin/com/gh0u1l5/wechatmagician/frontend/fragments/SupportFragment.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/gh0u1l5/wechatmagician/frontend/wechat/ConversationAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/app/src/main/kotlin/com/gh0u1l5/wechatmagician/frontend/wechat/ConversationAdapter.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/gh0u1l5/wechatmagician/frontend/wechat/ListPopupWindowPosition.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/app/src/main/kotlin/com/gh0u1l5/wechatmagician/frontend/wechat/ListPopupWindowPosition.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/gh0u1l5/wechatmagician/frontend/wechat/StringListAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/app/src/main/kotlin/com/gh0u1l5/wechatmagician/frontend/wechat/StringListAdapter.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/gh0u1l5/wechatmagician/frontend/widget/PasswordPreference.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/app/src/main/kotlin/com/gh0u1l5/wechatmagician/frontend/widget/PasswordPreference.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/gh0u1l5/wechatmagician/frontend/widget/PasswordSwitchPreference.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/app/src/main/kotlin/com/gh0u1l5/wechatmagician/frontend/widget/PasswordSwitchPreference.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/gh0u1l5/wechatmagician/util/AlipayUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/app/src/main/kotlin/com/gh0u1l5/wechatmagician/util/AlipayUtil.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/gh0u1l5/wechatmagician/util/DownloadUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/app/src/main/kotlin/com/gh0u1l5/wechatmagician/util/DownloadUtil.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/gh0u1l5/wechatmagician/util/IPCUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/app/src/main/kotlin/com/gh0u1l5/wechatmagician/util/IPCUtil.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/gh0u1l5/wechatmagician/util/ImageUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/app/src/main/kotlin/com/gh0u1l5/wechatmagician/util/ImageUtil.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/gh0u1l5/wechatmagician/util/LocaleUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/app/src/main/kotlin/com/gh0u1l5/wechatmagician/util/LocaleUtil.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/gh0u1l5/wechatmagician/util/MessageUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/app/src/main/kotlin/com/gh0u1l5/wechatmagician/util/MessageUtil.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/gh0u1l5/wechatmagician/util/PasswordUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/app/src/main/kotlin/com/gh0u1l5/wechatmagician/util/PasswordUtil.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/gh0u1l5/wechatmagician/util/UpdateUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/app/src/main/kotlin/com/gh0u1l5/wechatmagician/util/UpdateUtil.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/gh0u1l5/wechatmagician/util/ViewUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/app/src/main/kotlin/com/gh0u1l5/wechatmagician/util/ViewUtil.kt -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_alipay_mark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/app/src/main/res/drawable-hdpi/ic_alipay_mark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_github_mark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/app/src/main/res/drawable-mdpi/ic_github_mark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_alipay_mark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/app/src/main/res/drawable-xhdpi/ic_alipay_mark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_github_mark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/app/src/main/res/drawable-xhdpi/ic_github_mark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_alipay_mark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/app/src/main/res/drawable-xxhdpi/ic_alipay_mark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_github_mark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/app/src/main/res/drawable-xxhdpi/ic_github_mark.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_component_invalid.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/app/src/main/res/drawable/ic_component_invalid.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_component_valid.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/app/src/main/res/drawable/ic_component_valid.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_component_warn.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/app/src/main/res/drawable/ic_component_warn.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_email.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/app/src/main/res/drawable/ic_email.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_github_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/app/src/main/res/drawable/ic_github_logo.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_menu_developer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/app/src/main/res/drawable/ic_menu_developer.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_menu_donate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/app/src/main/res/drawable/ic_menu_donate.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_menu_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/app/src/main/res/drawable/ic_menu_settings.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_menu_status.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/app/src/main/res/drawable/ic_menu_status.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_menu_support.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/app/src/main/res/drawable/ic_menu_support.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_status_error.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/app/src/main/res/drawable/ic_status_error.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_status_ok.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/app/src/main/res/drawable/ic_status_ok.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_wepay_logo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/app/src/main/res/drawable/ic_wepay_logo.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/side_nav_bar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/app/src/main/res/drawable/side_nav_bar.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/app_bar_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/app/src/main/res/layout/app_bar_main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/content_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/app/src/main/res/layout/content_main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_donate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/app/src/main/res/layout/fragment_donate.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_status.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/app/src/main/res/layout/fragment_status.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_support.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/app/src/main/res/layout/fragment_support.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/nav_header_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/app/src/main/res/layout/nav_header_main.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/activity_main_drawer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/app/src/main/res/menu/activity_main_drawer.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/values-zh/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/app/src/main/res/values-zh/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/app/src/main/res/values/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/backup_descriptor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/app/src/main/res/xml/backup_descriptor.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/file_paths.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/app/src/main/res/xml/file_paths.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/pref_developer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/app/src/main/res/xml/pref_developer.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/pref_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/app/src/main/res/xml/pref_settings.xml -------------------------------------------------------------------------------- /app/src/test/kotlin/com/gh0u1l5/wechatmagician/util/MessageUtilUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/app/src/test/kotlin/com/gh0u1l5/wechatmagician/util/MessageUtilUnitTest.kt -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/gradlew.bat -------------------------------------------------------------------------------- /image/interface-1.en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/image/interface-1.en.png -------------------------------------------------------------------------------- /image/interface-1.zh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/image/interface-1.zh.png -------------------------------------------------------------------------------- /image/interface-2.en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/image/interface-2.en.png -------------------------------------------------------------------------------- /image/interface-2.zh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/image/interface-2.zh.png -------------------------------------------------------------------------------- /image/interface-3.en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/image/interface-3.en.png -------------------------------------------------------------------------------- /image/interface-3.zh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/image/interface-3.zh.png -------------------------------------------------------------------------------- /image/interface-4.en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/image/interface-4.en.png -------------------------------------------------------------------------------- /image/interface-4.zh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/image/interface-4.zh.png -------------------------------------------------------------------------------- /image/qrcode_alipay.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/image/qrcode_alipay.jpg -------------------------------------------------------------------------------- /image/qrcode_qq_group.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/image/qrcode_qq_group.jpg -------------------------------------------------------------------------------- /image/qrcode_tenpay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/image/qrcode_tenpay.png -------------------------------------------------------------------------------- /image/qrcode_wechat_group.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/image/qrcode_wechat_group.jpg -------------------------------------------------------------------------------- /image/sample-1.en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/image/sample-1.en.png -------------------------------------------------------------------------------- /image/sample-1.zh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/image/sample-1.zh.png -------------------------------------------------------------------------------- /image/sample-2.en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/image/sample-2.en.png -------------------------------------------------------------------------------- /image/sample-2.zh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/image/sample-2.zh.png -------------------------------------------------------------------------------- /image/sample-3.en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/image/sample-3.en.png -------------------------------------------------------------------------------- /image/sample-3.zh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/image/sample-3.zh.png -------------------------------------------------------------------------------- /image/sample-4.en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/image/sample-4.en.png -------------------------------------------------------------------------------- /image/sample-4.zh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/image/sample-4.zh.png -------------------------------------------------------------------------------- /image/sample-5.en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/image/sample-5.en.png -------------------------------------------------------------------------------- /image/sample-5.zh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/image/sample-5.zh.png -------------------------------------------------------------------------------- /image/sample-6.en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/image/sample-6.en.png -------------------------------------------------------------------------------- /image/sample-6.zh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/image/sample-6.zh.png -------------------------------------------------------------------------------- /image/sample-7.en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/image/sample-7.en.png -------------------------------------------------------------------------------- /image/sample-7.zh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/image/sample-7.zh.png -------------------------------------------------------------------------------- /image/sample-8.en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/image/sample-8.en.png -------------------------------------------------------------------------------- /image/sample-8.zh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0u1L5/WechatMagician/HEAD/image/sample-8.zh.png -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app', ':spellbook' --------------------------------------------------------------------------------