build.gradle 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. plugins {
  2. id 'com.android.library'
  3. }
  4. android {
  5. namespace "com.trtc.uikit.livekit"
  6. compileSdkVersion 29
  7. defaultConfig {
  8. minSdkVersion 19
  9. versionName "1.0"
  10. versionCode 1
  11. }
  12. buildTypes {
  13. release {
  14. minifyEnabled false
  15. proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
  16. }
  17. }
  18. compileOptions {
  19. sourceCompatibility JavaVersion.VERSION_1_8
  20. targetCompatibility JavaVersion.VERSION_1_8
  21. }
  22. }
  23. dependencies {
  24. api 'androidx.appcompat:appcompat:1.3.1'
  25. api 'com.google.android.material:material:1.4.0'
  26. api 'androidx.constraintlayout:constraintlayout:2.1.1'
  27. api 'androidx.gridlayout:gridlayout:1.0.0'
  28. api "com.google.code.gson:gson:2.8.6"
  29. implementation 'androidx.recyclerview:recyclerview:1.2.1'
  30. implementation 'com.github.yyued:SVGAPlayer-Android:2.6.1'
  31. api 'io.trtc.uikit:common:1.0.0.150'
  32. api 'io.trtc.uikit:rtc_room_engine:latest.release'
  33. api "com.tencent.liteav:LiteAVSDK_TRTC:latest.release"
  34. api "com.tencent.imsdk:imsdk-plus:latest.release"
  35. api "com.tencent.liteav.tuikit:tuicore:latest.release"
  36. }