Files
babelive_and/LiveBeauty/live_queenbeauty/build.gradle
2026-02-06 14:55:21 +08:00

48 lines
1.3 KiB
Groovy
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
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
}
}