Files
midi-android/tuichat/build.gradle
梁小江 773db1da25 1:修改拍卖房转盘问题
2:添加转盘参数竞拍问题
2025-10-12 16:31:54 +08:00

81 lines
2.3 KiB
Groovy
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import org.gradle.util.VersionNumber
plugins {
id 'com.android.library'
}
apply plugin: 'kotlin-android'
android {
compileSdkVersion 30
// buildToolsVersion "30.0.3"
namespace "com.tencent.qcloud.tuikit.tuichat"
defaultConfig {
minSdkVersion 19
targetSdkVersion 35
renderscriptSupportModeEnabled false
renderscriptTargetApi 30
javaCompileOptions {
annotationProcessorOptions {
arguments = [
AROUTER_MODULE_NAME: project.getName()
]
}
}
}
buildFeatures {
buildConfig = false
}
buildTypes {
release {
minifyEnabled false
}
}
def chatSourceJavaVersion = JavaVersion.VERSION_1_8
VersionNumber currentGradleVersion = VersionNumber.parse(gradle.gradleVersion)
if (currentGradleVersion.major >= 8) {
chatSourceJavaVersion = JavaVersion.VERSION_17
}
compileOptions {
sourceCompatibility chatSourceJavaVersion
targetCompatibility chatSourceJavaVersion
}
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.github.bumptech.glide:glide:4.12.0'
implementation 'com.google.code.gson:gson:2.9.1'
implementation 'androidx.viewpager2:viewpager2:1.0.0'
implementation 'androidx.datastore:datastore-preferences:1.0.0'
implementation 'androidx.datastore:datastore-preferences-rxjava3:1.0.0'
implementation 'io.reactivex.rxjava3:rxandroid:3.0.0'
annotationProcessor 'com.google.auto.service:auto-service:1.1.1'
implementation(libs.arouter.api.v150)
//annotationProcessor
annotationProcessor libs.arouter.compiler
api(libs.greenrobot.eventbus)
api project(':timcommon')
}
apply plugin: 'com.alibaba.arouter' //