build.gradle 564 B

12345678910111213141516171819
  1. apply plugin: 'com.android.library'
  2. android {
  3. compileSdkVersion 29
  4. buildToolsVersion "29.0.3"
  5. defaultConfig {
  6. minSdkVersion 21
  7. targetSdkVersion 29
  8. }
  9. }
  10. dependencies {
  11. implementation project(':AliyunSVideoBase')
  12. implementation project(':AliyunVideoCommon')
  13. implementation 'com.aliyun.video.android:svideopro:3.32.1'//基础版短视频SDK必须依赖。
  14. implementation 'androidx.cardview:cardview:1.0.0'
  15. implementation 'com.google.android.material:material:1.0.0'
  16. implementation project(path: ':KlcUtils')
  17. }