build.gradle 474 B

1234567891011121314151617181920
  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. consumerProguardFiles 'proguard-rules.pro'
  9. }
  10. lintOptions {
  11. warning 'InvalidPackage'
  12. }
  13. }
  14. dependencies {
  15. implementation project(':AliyunVideoCommon')
  16. implementation 'androidx.recyclerview:recyclerview:1.2.0'
  17. implementation 'com.google.code.gson:gson:2.8.5'
  18. }