build.gradle 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. apply plugin: 'com.android.application'
  2. android {
  3. compileSdkVersion rootProject.ext.compileSdkVersion
  4. buildToolsVersion rootProject.ext.buildToolsVersion
  5. defaultConfig {
  6. minSdkVersion rootProject.ext.minSdkVersion
  7. targetSdkVersion rootProject.ext.targetSdkVersion
  8. versionCode 1
  9. versionName "1.0"
  10. testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
  11. }
  12. buildTypes {
  13. release {
  14. minifyEnabled false
  15. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  16. }
  17. }
  18. }
  19. dependencies {
  20. implementation fileTree(dir: 'libs', include: ['*.jar'])
  21. // implementation project(':liteav_sdk')
  22. // implementation project(':common')
  23. implementation rootProject.ext.liteavSdk
  24. implementation project(':superplayerkit')
  25. implementation 'androidx.appcompat:appcompat:1.0.0'
  26. implementation 'androidx.recyclerview:recyclerview:1.0.0'
  27. implementation 'me.dm7.barcodescanner:zxing:1.8.4'
  28. implementation 'com.squareup.okhttp3:okhttp:3.11.0'
  29. implementation 'androidx.multidex:multidex:2.0.0'
  30. implementation 'androidx.cardview:cardview:1.0.0'
  31. implementation 'com.google.code.gson:gson:2.3.1'
  32. implementation('com.blankj:utilcode:1.30.7', {
  33. exclude group: 'com.google.code.gson', module: 'gson'
  34. })
  35. implementation 'com.scwang.smart:refresh-layout-kernel:2.0.3' //核心必须依赖
  36. implementation 'com.scwang.smart:refresh-header-classics:2.0.3' //经典刷新头
  37. implementation 'com.scwang.smart:refresh-footer-classics:2.0.3' //经典加载
  38. }