feat(rm99): 添加 rm99 模块及相关配置

- 在 settings.gradle 中新增 rm99 模块引用
- 配置 rm99 build.gradle,设置应用ID、名称及相关参数
- 更新 rm99 的 google-services.json 文件,包含新的项目和API密钥
- 修改多个模块的 build.gradle 文件,调整应用输出名称及用户ID
- 更新 .idea 配置文件以支持 rm99 模块的部署和构建环境
- 统一规范已有模块的 appOutPutName 字符大小写格式
This commit is contained in:
2026-08-06 09:37:28 +08:00
parent bf8a286086
commit d3dd5738a5
10 changed files with 35 additions and 15 deletions

View File

@@ -3,7 +3,7 @@ plugins {
id 'com.google.gms.google-services'
}
def appOutPutName = "1XACEAU"
def appOutPutName = "rm99"
android {
namespace rootProject.ext.namespace
@@ -15,17 +15,17 @@ android {
versionName rootProject.ext.versionName
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
applicationId "com.ahdas.xaceau"
applicationId "com.web.rm99"
//app大背景色
resValue('color', 'windows_color', '#1A1A1A')
//底部导航栏颜色 大背景颜色为 windows_color——style_color的上下渐变色
resValue('color', 'style_color', '#08192A')
//app 名字
resValue('string', 'app_name', '1XACEAU')
resValue('string', 'app_name', 'RM99')
buildConfigField "int", "USERID", "300"
buildConfigField "int", "USERID", "134"
buildConfigField "boolean", "IS_WHITE", "false"
buildConfigField "boolean", "IS_ROUND", "true"
buildConfigField "int", "ROUND_RADIUS", "10"