chore(build): 更新应用配置和更换应用标识

- 修改build.gradle中app输出名称和应用ID
- 调整应用主颜色值和应用名称资源
- 更新buildConfigField配置项,包括USERID和HAS_CONTACT
- 替换google-services.json文件内容,更新Firebase项目配置
- 添加新的应用图标资源文件
- 删除旧的应用图标资源文件
This commit is contained in:
2026-08-06 09:37:23 +08:00
parent 5b965686c4
commit bf8a286086
17 changed files with 12 additions and 12 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 73 KiB

View File

View File

@@ -3,7 +3,7 @@ plugins {
id 'com.google.gms.google-services'
}
def appOutPutName = "2U8OB"
def appOutPutName = "1XACEAU"
android {
namespace rootProject.ext.namespace
@@ -15,21 +15,21 @@ android {
versionName rootProject.ext.versionName
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
applicationId "com.xizhcozzc.xoxau"
applicationId "com.ahdas.xaceau"
//app大背景色
resValue('color', 'windows_color', '#1A1A1A')
// windows_colorstyle_color的上下渐变色
resValue('color', 'style_color', '#1A1A1A')
resValue('color', 'style_color', '#08192A')
//app
resValue('string', 'app_name', '2uob')
resValue('string', 'app_name', '1XACEAU')
buildConfigField "int", "USERID", "274"
buildConfigField "int", "USERID", "300"
buildConfigField "boolean", "IS_WHITE", "false"
buildConfigField "boolean", "IS_ROUND", "true"
buildConfigField "int", "ROUND_RADIUS", "10"
buildConfigField "boolean", "HAS_CONTACT", "false"
buildConfigField "boolean", "HAS_CONTACT", "true"
buildConfigField "boolean", "HAS_HOOK", "false"
}

View File

@@ -1,21 +1,21 @@
{
"project_info": {
"project_number": "531093842148",
"project_id": "xoxau-73987",
"storage_bucket": "xoxau-73987.firebasestorage.app"
"project_number": "932292522704",
"project_id": "xaceau-53664",
"storage_bucket": "xaceau-53664.firebasestorage.app"
},
"client": [
{
"client_info": {
"mobilesdk_app_id": "1:531093842148:android:900f21468e3a0b3cd0a4f1",
"mobilesdk_app_id": "1:932292522704:android:521063bf4d7362e454a4d5",
"android_client_info": {
"package_name": "com.xizhcozzc.xoxau"
"package_name": "com.ahdas.xaceau"
}
},
"oauth_client": [],
"api_key": [
{
"current_key": "AIzaSyC-hKTovaVgvbDbnwcHt-IOvXU2goYVjrk"
"current_key": "AIzaSyAEPUZSDu21oB5WSSrqHLT0xE-rwHYoCtU"
}
],
"services": {

Binary file not shown.

After

Width:  |  Height:  |  Size: 27 KiB