apply plugin: 'com.android.library' android { compileSdkVersion 30 buildToolsVersion "30.0.2" defaultConfig { versionName "1.0" versionCode 1 minSdkVersion 19 targetSdkVersion 26 } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' } } compileOptions { sourceCompatibility JavaVersion.VERSION_1_8 targetCompatibility JavaVersion.VERSION_1_8 } } dependencies { api fileTree(dir: 'libs', include: ['*.jar']) api 'androidx.appcompat:appcompat:1.0.0' api 'androidx.constraintlayout:constraintlayout:1.1.3' api "com.github.bumptech.glide:glide:4.12.0" def projects = this.rootProject.getAllprojects().stream().map { project -> project.name }.collect() println "all projects : {$projects}" if (projects.contains("tuicore")) { api project(':tuicore') } else { api "com.tencent.imsdk:imsdk-plus:7.1.3925" api "com.tencent.liteav.tuikit:tuicore:1.1.22" } if (projects.contains("tuicallengine")) { api project(':tuicallengine') } else { api "com.google.code.gson:gson:2.9.1" api "com.tencent.liteav:LiteAVSDK_TRTC:10.9.0.13092" api 'com.tencent.liteav.tuikit:tuicallengine:1.5.0.305' } }