学习机 新
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

50 Zeilen
1.4KB

  1. apply plugin: 'com.android.library'
  2. android {
  3. compileSdkVersion 30
  4. buildToolsVersion "30.0.2"
  5. defaultConfig {
  6. versionName "1.0"
  7. versionCode 1
  8. minSdkVersion 19
  9. targetSdkVersion 26
  10. }
  11. buildTypes {
  12. release {
  13. minifyEnabled false
  14. proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
  15. }
  16. }
  17. compileOptions {
  18. sourceCompatibility JavaVersion.VERSION_1_8
  19. targetCompatibility JavaVersion.VERSION_1_8
  20. }
  21. }
  22. dependencies {
  23. api fileTree(dir: 'libs', include: ['*.jar'])
  24. api 'androidx.appcompat:appcompat:1.0.0'
  25. api 'androidx.constraintlayout:constraintlayout:1.1.3'
  26. api "com.github.bumptech.glide:glide:4.12.0"
  27. def projects = this.rootProject.getAllprojects().stream().map { project -> project.name }.collect()
  28. println "all projects : {$projects}"
  29. if (projects.contains("tuicore")) {
  30. api project(':tuicore')
  31. } else {
  32. api "com.tencent.imsdk:imsdk-plus:7.1.3925"
  33. api "com.tencent.liteav.tuikit:tuicore:1.1.22"
  34. }
  35. if (projects.contains("tuicallengine")) {
  36. api project(':tuicallengine')
  37. } else {
  38. api "com.google.code.gson:gson:2.9.1"
  39. api "com.tencent.liteav:LiteAVSDK_TRTC:10.9.0.13092"
  40. api 'com.tencent.liteav.tuikit:tuicallengine:1.5.0.305'
  41. }
  42. }