Sin descripción

DoggyZhang 5580807fcb feat: 版本1.0.1(14) hace 2 meses
.github 0b8c6440d8 Add Claude Code GitHub Workflow (#30) hace 6 meses
app 7f8937b9bf feat: ui fix hace 2 meses
buildSrc 331eb2f96e feat: 升级适配target 35 (#18) hace 7 meses
channel 72297ce62b 初始化项目 hace 1 año
frame eb0ea4422a feat: 录音权限授予弹窗 hace 2 meses
gradle 74e79331c8 feat: bug fix hace 2 meses
keystore 5d9357f568 feat: 应用签名 hace 3 meses
module 94e4e84711 feat: 修改日志 hace 2 meses
native 10434a4d70 feat: 增加Web模块 hace 3 meses
patch 72297ce62b 初始化项目 hace 1 año
third-party-libs 72297ce62b 初始化项目 hace 1 año
tool 65c7ae0f07 feat: Google Pay hace 3 meses
.gitignore dca358e28f feat: 更新翻译 hace 3 meses
.tolgeerc 2ef3f0c98e feat: Android多语言脚本,翻译校正 hace 8 meses
README.md 0c0f624d0c feat: 更换应用名,Logo,默认头像 hace 4 meses
build.gradle 07a9d28b18 feat: 集成腾讯云IM,增加IM模块 hace 4 meses
gradle.properties 5580807fcb feat: 版本1.0.1(14) hace 2 meses
gradlew 75005b3620 fix: lifecycleScope包裹binding问题 hace 10 meses
gradlew.bat 72297ce62b 初始化项目 hace 1 año
keystore.properties a7b15f13e1 feat: 更换打包签名,更换gami应用名 hace 3 meses
pull_and_fill_translations.py c3551285a6 feat: 多语言脚本修改 hace 8 meses
push_translations.py edc74a762d feat: 多语言脚本修改 hace 7 meses
settings.gradle ad82dee9f7 feat: 支持查看图片消息&预览 hace 3 meses

README.md

Gami工程规范

资源命名规范

  • 独立模块专属资源文件统一到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的房间创建页面背景