build.gradle 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. apply plugin: 'com.android.library'
  2. def projects = this.rootProject.getAllprojects().stream().map { project -> project.name }.collect()
  3. android {
  4. compileSdkVersion 30
  5. buildToolsVersion "28.0.3"
  6. defaultConfig {
  7. minSdkVersion 19
  8. targetSdkVersion 30
  9. }
  10. buildTypes {
  11. release {
  12. minifyEnabled false
  13. proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
  14. }
  15. }
  16. }
  17. dependencies {
  18. implementation fileTree(include: ['*.jar'], dir: 'libs')
  19. implementation "de.hdodenhof:circleimageview:3.1.0"
  20. implementation "com.github.bumptech.glide:glide:4.12.0"
  21. implementation 'me.dm7.barcodescanner:zxing:1.8.4'
  22. implementation "androidx.appcompat:appcompat:1.0.0"
  23. implementation "com.google.code.gson:gson:2.8.6"
  24. implementation 'com.google.android.material:material:1.4.0'
  25. implementation project(':tuivideoseat')
  26. implementation project(':timcommon')
  27. implementation project(':tuichat')
  28. implementation rootProject.getProperties().containsKey("liteavSdk") ? rootProject.ext.liteavSdk : "com.tencent.liteav:LiteAVSDK_TRTC:11.2.0.13154"
  29. implementation rootProject.getProperties().containsKey("roomEngineSdk") ? rootProject.ext.roomEngineSdk : "com.tencent.liteav.tuikit:tuiroomengine:1.3.3.11"
  30. implementation projects.contains("tuicore") ? project(':tuicore') : "com.tencent.liteav.tuikit:tuicore:7.3.4358"
  31. }