Lanu Android

wutiaorong 4bb2c180af feat: 生产谷歌上传密钥zip vor 1 Jahr
.github 72297ce62b 初始化项目 vor 1 Jahr
app 184667fde9 feat: 私聊页完善 vor 1 Jahr
audio 72297ce62b 初始化项目 vor 1 Jahr
buildSrc 72297ce62b 初始化项目 vor 1 Jahr
channel 72297ce62b 初始化项目 vor 1 Jahr
frame 184667fde9 feat: 私聊页完善 vor 1 Jahr
gradle c050358cee feat: add imkit vor 1 Jahr
keystore 4bb2c180af feat: 生产谷歌上传密钥zip vor 1 Jahr
module 184667fde9 feat: 私聊页完善 vor 1 Jahr
native 72297ce62b 初始化项目 vor 1 Jahr
patch 72297ce62b 初始化项目 vor 1 Jahr
third-party-libs 72297ce62b 初始化项目 vor 1 Jahr
tool 424a246517 feat: 更换应用名称,更换秘钥,更换google-services.json vor 1 Jahr
.gitignore 424a246517 feat: 更换应用名称,更换秘钥,更换google-services.json vor 1 Jahr
README.md 72297ce62b 初始化项目 vor 1 Jahr
build.gradle 72297ce62b 初始化项目 vor 1 Jahr
gradle.properties 9470f13313 feat: yoki 部分配置修改 vor 1 Jahr
gradlew 72297ce62b 初始化项目 vor 1 Jahr
gradlew.bat 72297ce62b 初始化项目 vor 1 Jahr
keystore.properties 424a246517 feat: 更换应用名称,更换秘钥,更换google-services.json vor 1 Jahr
settings.gradle c050358cee feat: add imkit vor 1 Jahr

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