123456789101112131415161718192021222324252627282930 |
- apply plugin: 'com.android.library'
- android {
- compileSdkVersion 28
- buildToolsVersion "28.0.3"
- defaultConfig {
- minSdkVersion 19
- targetSdkVersion 26
- }
- buildTypes {
- release {
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
- }
- }
- }
- dependencies {
- api fileTree(dir: 'libs', include: ['*.jar'])
- api 'com.tencent.mediacloud:TencentEffect_S1-04:2.4.2.324'
- api "androidx.constraintlayout:constraintlayout:1.1.3"
- api 'com.google.android.material:material:1.4.0'
- api "com.google.code.gson:gson:2.8.6"
- def projects = this.rootProject.getAllprojects().stream().map { project -> project.name }.collect()
- api projects.contains("tuicore") ? project(':tuicore') : "com.tencent.liteav.tuikit:tuicore:latest.release"
- api rootProject.getProperties().containsKey("liteavSdk") ? rootProject.ext.liteavSdk : "com.tencent.liteav:LiteAVSDK_TRTC:latest.release"
- }
|