Lanu Android

XiaodongLin 6ffa2d175a fix: 个人资料页,房间没人的话需要展示 0人 hai 8 meses
.github 72297ce62b 初始化项目 hai 1 ano
app ba8491d378 fix: 群聊页也显示2个挂件 hai 8 meses
audio 140cbc55b6 feat: mini_slot 小老虎机 (#14) hai 8 meses
buildSrc 72297ce62b 初始化项目 hai 1 ano
channel 72297ce62b 初始化项目 hai 1 ano
frame 23b93637c1 feat: 家族需求 (#3) hai 8 meses
gradle 1901e8b8eb Revert "feat: rongcloud升级,默认sdk内部连接逻辑都走https,跟外面设置clearText无关。" hai 8 meses
keystore 4bb2c180af feat: 生产谷歌上传密钥zip hai 1 ano
module 6ffa2d175a fix: 个人资料页,房间没人的话需要展示 0人 hai 8 meses
native 72297ce62b 初始化项目 hai 1 ano
patch 72297ce62b 初始化项目 hai 1 ano
third-party-libs 72297ce62b 初始化项目 hai 1 ano
tool 9698e81d83 feat: 多语言文案 hai 1 ano
.gitignore 424a246517 feat: 更换应用名称,更换秘钥,更换google-services.json hai 1 ano
.tolgeerc 2ef3f0c98e feat: Android多语言脚本,翻译校正 hai 9 meses
README.md 72297ce62b 初始化项目 hai 1 ano
build.gradle 22ba3e1a96 feat: 真人认证,接商汤SDK (#42) hai 10 meses
gradle.properties 019804587f feat: 更新版本到1.8.3(31) hai 8 meses
gradlew 75005b3620 fix: lifecycleScope包裹binding问题 hai 10 meses
gradlew.bat 72297ce62b 初始化项目 hai 1 ano
keystore.properties 05b8db004d fix: 签名文件路径问题 hai 1 ano
pull_and_fill_translations.py c3551285a6 feat: 多语言脚本修改 hai 9 meses
push_translations.py 1639e2b08c feat: 修改多语言脚本 hai 9 meses
settings.gradle 440f8000f0 feat: APP启动优化 hai 9 meses

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的房间创建页面背景