Lanu Android

XiaodongLin 7b572a72de feat: 更新版本到1.10.1(45) 5 months ago
.github 0b8c6440d8 Add Claude Code GitHub Workflow (#30) 6 months ago
app d3e87cdff6 feat: 更新classpath文件 5 months ago
audio e01feb089c feat: 更新游戏资源 7 months ago
buildSrc 331eb2f96e feat: 升级适配target 35 (#18) 7 months ago
channel 72297ce62b 初始化项目 1 year ago
frame 59153957dc feat: 启动优化二期 (#42) 5 months ago
gradle 59153957dc feat: 启动优化二期 (#42) 5 months ago
keystore 4bb2c180af feat: 生产谷歌上传密钥zip 1 year ago
module dee2d0dbe4 feat: RankListFragment改成isLazyLoad就行 5 months ago
native 72297ce62b 初始化项目 1 year ago
patch 72297ce62b 初始化项目 1 year ago
third-party-libs 72297ce62b 初始化项目 1 year ago
tool 9698e81d83 feat: 多语言文案 1 year ago
.gitignore 424a246517 feat: 更换应用名称,更换秘钥,更换google-services.json 1 year ago
.tolgeerc 2ef3f0c98e feat: Android多语言脚本,翻译校正 8 months ago
README.md 72297ce62b 初始化项目 1 year ago
build.gradle 4af6746c3a feat: 引入aop框架,hook updateScrollEventValues (#26) 7 months ago
gradle.properties 7b572a72de feat: 更新版本到1.10.1(45) 5 months ago
gradlew 75005b3620 fix: lifecycleScope包裹binding问题 10 months ago
gradlew.bat 72297ce62b 初始化项目 1 year ago
keystore.properties 05b8db004d fix: 签名文件路径问题 1 year ago
pull_and_fill_translations.py c3551285a6 feat: 多语言脚本修改 8 months ago
push_translations.py edc74a762d feat: 多语言脚本修改 7 months ago
settings.gradle 59153957dc feat: 启动优化二期 (#42) 5 months ago

README.md

WeParty工程规范

资源命名规范

  • 独立模块专属资源文件统一到AAB模块相应res下
  • 通用的drawable、anim、color等资源文件统一App res下
  • 资源文件命名规范:<模块>_<功能>_<描述>

    //字符串
    <!-- 通用文案模块名:common -->
    <string name="common_network_error">网络错误!</string>
    <!-- 房间礼物功能 -->
    <string name="room_gift_parse_error">礼物资源解析错误!</string>
     
    //color,颜色命名使用color_前缀,颜色值统一大写
    <color name="color_7EBA3E">#7EBA3E</color>
     
    //drawable文件:<模块>_<功能>_<颜色>_<size>_<ic/bg>.png,其中size单位dp,width等于height时写一个值,width不同于height时<width>_<height>,如果资源是图标使用ic后缀,如果资源是背景使用bg后缀
    common_close_white_24_ic.png //通用白色width=height=24dp的关闭图标
    room_create_purple_375_667_bg.png //紫色width=375dp&height=667dp的房间创建页面背景