Files
fenghzuang_new/u8888aud/build.gradle
kang a382297ec2 feat: 更新多个模块的基础配置和资源文件
- 更新版本号至 v1.3.7
- 修改多个模块的 build.gradle 文件,更新应用 ID 和资源配置
- 新增 we1win、afb77au、bb8au、be9au、gg66au、sg99live、u8888aud、uu3au 模块的基础配置
- 删除 xoxoau8 模块及其相关文件
- 更新 Firebase 配置文件以匹配新的项目设置
2026-05-06 17:18:52 +08:00

93 lines
2.8 KiB
Groovy

plugins {
id 'com.android.application'
id 'com.google.gms.google-services'
}
def appOutPutName = "u8888aud"
android {
namespace rootProject.ext.namespace
compileSdk 36
defaultConfig {
minSdkVersion 24
targetSdk 36
versionCode rootProject.ext.versionCode
versionName rootProject.ext.versionName
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
applicationId "com.asjdusub.u8888aud"
//app大背景色
resValue('color', 'windows_color', '#D3FFDC')
//底部导航栏颜色 大背景颜色为 windows_color——style_color的上下渐变色
resValue('color', 'style_color', '#245825')
//app 名字
resValue('string', 'app_name', 'U8888AUD')
buildConfigField "String", "BASE_URL", "\"https://live22x.com/\""
buildConfigField "int", "USERID", "70"
buildConfigField "boolean", "IS_WHITE", "false"
buildConfigField "boolean", "IS_ROUND", "true"
buildConfigField "int", "ROUND_RADIUS", "10"
buildConfigField "boolean", "HAS_CONTACT", "true"
buildConfigField "boolean", "HAS_HOOK", "false"
}
buildFeatures {
buildConfig = true
}
signingConfigs {
debug {
storeFile file('telur33.jks')
storePassword "android2014"
keyAlias 'key0'
keyPassword "android2014"
}
release {
storeFile file('telur33.jks')
storePassword "android2014"
keyAlias 'key0'
keyPassword "android2014"
}
}
buildTypes {
release {
signingConfig signingConfigs.release
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility rootProject.ext.JAVA_VERSION
targetCompatibility rootProject.ext.JAVA_VERSION
}
applicationVariants.all { variant ->
variant.outputs.all {
def outputDir = new File(rootProject.ext.outputPath)
outputDir.mkdirs()
def outputFileName = "${appOutPutName}.apk"
setOutputFileName(outputFileName)
def newOutputFile = new File(outputDir, outputFileName)
newOutputFile.parentFile.mkdirs()
variant.assemble.doLast {
try {
java.nio.file.Files.copy(
outputFile.toPath(),
newOutputFile.toPath(),
java.nio.file.StandardCopyOption.REPLACE_EXISTING
)
} catch (java.io.IOException e) {
}
}
}
}
}
dependencies {
implementation project(path: ':base')
}