2025-10-20 10:16:44 +08:00
|
|
|
plugins {
|
|
|
|
|
id 'com.android.library'
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
android {
|
|
|
|
|
compileSdkVersion 30
|
2025-10-24 17:52:11 +08:00
|
|
|
// buildToolsVersion "30.0.3"
|
2025-10-20 10:16:44 +08:00
|
|
|
namespace "com.tencent.qcloud.tuikit.tuiconversation"
|
|
|
|
|
defaultConfig {
|
|
|
|
|
minSdkVersion 19
|
|
|
|
|
targetSdkVersion 30
|
|
|
|
|
}
|
|
|
|
|
buildFeatures {
|
|
|
|
|
buildConfig = true
|
|
|
|
|
}
|
|
|
|
|
buildTypes {
|
|
|
|
|
release {
|
|
|
|
|
minifyEnabled false
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
compileOptions {
|
|
|
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
|
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
sourceSets {
|
|
|
|
|
main {
|
|
|
|
|
res.srcDirs += "src/main/res-minimalistui"
|
|
|
|
|
res.srcDirs += "src/main/res-light"
|
|
|
|
|
res.srcDirs += "src/main/res-lively"
|
|
|
|
|
res.srcDirs += "src/main/res-serious"
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
|
/*plugin-build-Begin
|
|
|
|
|
|
|
|
|
|
compileOnly fileTree(include: ['*.jar','*.aar'], dir: '../../../../tuikit/android/libs')
|
|
|
|
|
|
|
|
|
|
plugin-build-End*/
|
|
|
|
|
|
|
|
|
|
implementation 'androidx.appcompat:appcompat:1.3.0'
|
|
|
|
|
implementation 'com.google.android.material:material:1.3.0'
|
|
|
|
|
implementation 'com.google.code.gson:gson:2.9.1'
|
|
|
|
|
implementation project(':tuichat')
|
|
|
|
|
annotationProcessor 'com.google.auto.service:auto-service:1.1.1'
|
|
|
|
|
|
|
|
|
|
api project(':timcommon')
|
|
|
|
|
api project(':moduleUtil')
|
|
|
|
|
}
|