集成完直播后提交代码

This commit is contained in:
xuhuixiang
2026-02-06 14:55:21 +08:00
commit ea9ffa06ff
960 changed files with 75063 additions and 0 deletions

View File

@@ -0,0 +1,48 @@
apply plugin: 'com.android.library'
android {
compileSdkVersion androidCompileSdkVersion
buildToolsVersion androidBuildToolsVersion
defaultConfig {
minSdkVersion androidMinSdkVersion
targetSdkVersion androidTargetSdkVersion
versionCode 1
versionName "1.0"
consumerProguardFiles "consumer-rules.pro"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
}
dependencies {
implementation externalAndroidAnnotation
api project(':LiveBeauty:live_beauty')
// 此处修改根据自身项目需要指定依赖的菜单组件sdk
api(externalAliyunQueenUI) {
exclude group: 'com.aliyun.maliang.android', module: 'queen'
}
// 此处引用外部独立版本高级功能Queen
implementation externalAliyunQueen
// 一体化SDK包含基础美颜功能
if (!"true".equalsIgnoreCase(allInOne)) {
// 不含一体化独立接入Queen时需带上该framework
implementation externalAliyunQueenFramwork
} else {
implementation externalAllInOne
}
}