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

40 lines
1.1 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.
plugins {
id '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 externalAndroidDesign
implementation externalSimpleZXing
// 音频智能降噪组件库如果需要使用pusher里面的音频智能降噪功能需集成此依赖库否则调用相关接口将会失效
implementation 'com.alivc.live.component:intelligentdenoise:1.0.0'
implementation project(':LiveCommon:live_commonbiz')
implementation project(':LiveBeauty:live_queenbeauty')
}