plugins { id 'com.android.library' } android { compileSdkVersion 30 buildToolsVersion "30.0.3" namespace "com.tencent.qcloud.tuikit.tuicustomerserviceplugin" defaultConfig { minSdkVersion 19 targetSdkVersion 30 versionCode 1 versionName "1.0" renderscriptSupportModeEnabled false renderscriptTargetApi 30 } buildFeatures { buildConfig = false } buildTypes { release { minifyEnabled true proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' } } 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 { 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' annotationProcessor 'com.google.auto.service:auto-service:1.1.1' implementation 'io.noties.markwon:core:4.6.2' implementation 'io.noties.markwon:html:4.6.2' implementation 'io.noties.markwon:image:4.6.2' implementation 'io.noties.markwon:image-glide:4.6.2' implementation 'io.noties.markwon:inline-parser:4.6.2' implementation 'io.noties.markwon:linkify:4.6.2' implementation 'io.noties.markwon:ext-tables:4.6.2' api project(':timcommon') api project(':tuichat') api project(':tuicontact') }