| 123456789101112131415161718192021222324252627282930313233343536373839404142 | apply plugin: 'com.android.library'def projects = this.rootProject.getAllprojects().stream().map { project -> project.name }.collect()android {    compileSdkVersion 30    buildToolsVersion "28.0.3"    defaultConfig {        minSdkVersion 19        targetSdkVersion 30    }    buildTypes {        release {            minifyEnabled false            proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'        }        preRelease {            minifyEnabled false            proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'        }    }}dependencies {    implementation fileTree(include: ['*.jar'], dir: 'libs')    implementation "de.hdodenhof:circleimageview:3.1.0"    implementation "com.github.bumptech.glide:glide:4.12.0"    implementation 'me.dm7.barcodescanner:zxing:1.8.4'    implementation "androidx.appcompat:appcompat:1.0.0"    implementation "com.google.code.gson:gson:2.8.6"    implementation 'com.google.android.material:material:1.4.0'    implementation project(':tuivideoseat')    implementation project(':timcommon')    implementation project(':tuichat')    implementation rootProject.getProperties().containsKey("liteavSdk") ? rootProject.ext.liteavSdk : "com.tencent.liteav:LiteAVSDK_TRTC:11.2.0.13154"    implementation rootProject.getProperties().containsKey("roomEngineSdk") ? rootProject.ext.roomEngineSdk : "com.tencent.liteav.tuikit:tuiroomengine:1.3.3.11"    implementation projects.contains("tuicore") ? project(':tuicore') : "com.tencent.liteav.tuikit:tuicore:7.3.4358"}
 |