Files
2025-09-03 18:52:07 +08:00

36 lines
833 B
Groovy

plugins {
id 'com.android.library'
}
android {
compileSdkVersion 30
namespace "com.tencent.qcloud.tuikit.tuicommunity"
defaultConfig {
minSdkVersion 19
targetSdkVersion 30
}
buildFeatures {
buildConfig = false
}
buildTypes {
release {
minifyEnabled false
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
}
dependencies {
implementation 'androidx.appcompat:appcompat:1.3.1'
implementation 'com.google.android.material:material:1.3.0'
annotationProcessor 'com.google.auto.service:auto-service:1.1.1'
implementation 'com.github.bumptech.glide:glide:4.12.0'
implementation 'com.google.code.gson:gson:2.9.1'
api project(':timcommon')
}