├── .idea ├── .gitignore ├── LittleHelperIssues.iml ├── misc.xml ├── modules.xml └── vcs.xml ├── README.md └── doc ├── lh_article_1.png ├── lh_article_2.png ├── lh_novel_1.png ├── lh_novel_2.png ├── lh_video_1.png ├── lh_video_2.png ├── lh_video_3.png ├── lh_video_4.png ├── lh_video_5.png └── lh_video_6.png /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/LittleHelperIssues.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ## 项目介绍 2 | [博客地址](https://v.jianghouren.com/archives/fef0ef2b.html) 3 | 4 | ## 项目架构 5 | 6 | AndroidX、MVVM、Composing build、[Material Design](https://m3.material.io/)、Kotlin + 协程、ViewBinding、...... 7 | 8 | ## 项目依赖 9 | 10 | - [ImmersionBar](https://github.com/gyf-dev/ImmersionBar '沉浸式框架') 11 | - [aspectjrt](https://mvnrepository.com/artifact/org.aspectj/aspectjrt 'AOP 插件库') 12 | - [XXPermissions](https://github.com/getActivity/XXPermissions '权限请求框架') 13 | - Retrofit2 14 | - Jsoup 15 | - Glide 16 | - Coil 17 | - PhotoView 18 | - Tencent Bugly 19 | - Tencent MMKV 20 | - [Tencent Shadow](https://github.com/Tencent/Shadow '插件化框架') 21 | - [GSYVideoPlayer](https://github.com/CarGuo/GSYVideoPlayer '视频播放器') 22 | - ...... 23 | 24 | ## 参考资料 25 | 26 | - [AndroidProject-Kotlin](https://github.com/getActivity/AndroidProject-Kotlin "安卓技术中台") 27 | - [XUI](https://github.com/xuexiangjys/XUI/blob/master/README_ZH.md) 28 | - [MaterialDesign](https://github.com/yechaoa/MaterialDesign) 29 | - ...... 30 | -------------------------------------------------------------------------------- /doc/lh_article_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyeyuanye/LittleHelperIssues/269d958f1fbc4c29e50a93a07f979fa5ff57e543/doc/lh_article_1.png -------------------------------------------------------------------------------- /doc/lh_article_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyeyuanye/LittleHelperIssues/269d958f1fbc4c29e50a93a07f979fa5ff57e543/doc/lh_article_2.png -------------------------------------------------------------------------------- /doc/lh_novel_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyeyuanye/LittleHelperIssues/269d958f1fbc4c29e50a93a07f979fa5ff57e543/doc/lh_novel_1.png -------------------------------------------------------------------------------- /doc/lh_novel_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyeyuanye/LittleHelperIssues/269d958f1fbc4c29e50a93a07f979fa5ff57e543/doc/lh_novel_2.png -------------------------------------------------------------------------------- /doc/lh_video_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyeyuanye/LittleHelperIssues/269d958f1fbc4c29e50a93a07f979fa5ff57e543/doc/lh_video_1.png -------------------------------------------------------------------------------- /doc/lh_video_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyeyuanye/LittleHelperIssues/269d958f1fbc4c29e50a93a07f979fa5ff57e543/doc/lh_video_2.png -------------------------------------------------------------------------------- /doc/lh_video_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyeyuanye/LittleHelperIssues/269d958f1fbc4c29e50a93a07f979fa5ff57e543/doc/lh_video_3.png -------------------------------------------------------------------------------- /doc/lh_video_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyeyuanye/LittleHelperIssues/269d958f1fbc4c29e50a93a07f979fa5ff57e543/doc/lh_video_4.png -------------------------------------------------------------------------------- /doc/lh_video_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyeyuanye/LittleHelperIssues/269d958f1fbc4c29e50a93a07f979fa5ff57e543/doc/lh_video_5.png -------------------------------------------------------------------------------- /doc/lh_video_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feiyeyuanye/LittleHelperIssues/269d958f1fbc4c29e50a93a07f979fa5ff57e543/doc/lh_video_6.png --------------------------------------------------------------------------------