├── .gitignore └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | # Built application files 2 | *.apk 3 | *.ap_ 4 | app/release/ 5 | 6 | # Files for the ART/Dalvik VM 7 | *.dex 8 | 9 | # Java class files 10 | *.class 11 | 12 | # Generated files 13 | bin/ 14 | gen/ 15 | out/ 16 | output.json 17 | 18 | # Gradle files 19 | .gradle/ 20 | **/build/ 21 | 22 | # Local configuration file (sdk path, etc) 23 | local.properties 24 | 25 | # Proguard folder generated by Eclipse 26 | proguard/ 27 | app/lint.xml 28 | # app/proguard-project.txt 29 | 30 | # Log Files 31 | *.log 32 | 33 | # Android Studio Navigation editor temp files 34 | .navigation/ 35 | 36 | # Android Studio captures folder 37 | captures/ 38 | 39 | # IntelliJ 40 | *.iml 41 | .idea/ 42 | 43 | # Keystore files 44 | # Uncomment the following line if you do not want to check your keystore files in. 45 | *.jks 46 | 47 | keystore.properties 48 | 49 | # External native build folder generated in Android Studio 2.2 and later 50 | .externalNativeBuild 51 | 52 | # Google Services (e.g. APIs or Firebase) 53 | google-services.json 54 | 55 | # Freeline 56 | freeline.py 57 | freeline/ 58 | freeline_project_description.json 59 | 60 | # fastlane 61 | fastlane/report.xml 62 | fastlane/Preview.html 63 | fastlane/screenshots 64 | fastlane/test_output 65 | fastlane/readme.md 66 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ## 👋再见 2 | 3 | 亲爱的朋友们: 4 | 5 | 我之所以写下这些文字,是因为我已经做出了一个艰难的决定——永久停止对贴吧 Lite 的维护。这个决定并非一蹴而就,而是经过深思熟虑、反复权衡之后的结果。 6 | 7 | 首先,最主要的原因是个人精力的限制。随着学业压力的增加,我发现自己越来越难以分配足够的时间和精力来维持项目所需的持续投入。项目的维护不仅仅是时间的问题,更是一个精力的挑战,需要我不断地更新、解决问题,这成为了我越来越难以克服的障碍。此外,尽管这绝非决定性的原因,但项目存在的合规性问题也为我带来了额外的顾虑,这些顾虑随时间积累,最终对我的决定产生了一定影响。 8 | 9 | 在过去的四年中,我与贴吧 Lite 一同成长。因此,作出这一决定,我的内心充满了不舍。在此,我想向所有关注、使用和支持贴吧 Lite 的朋友们表达我的深深感谢。正是你们的反馈、建议和鼓励,让我在过去的岁月里不断前进,持续成长。同时,我也要特别感谢那些在过去几年中向开源仓库中贡献过代码的其他开发者们,是你们的努力,让贴吧 Lite 不断变得更好。 10 | 11 | 宇宙很大,生活更大。相信今后我们的路径仍有可能在未来的某个时刻再次交汇。❤️ 12 | 13 | 幻城 14 | 15 | 2024年2月18日 --------------------------------------------------------------------------------