build.gradle 1010 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. apply plugin: 'com.android.library'
  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. api rootProject.ext.liteavSdk
  22. implementation 'androidx.appcompat:appcompat:1.0.0'
  23. implementation 'androidx.recyclerview:recyclerview:1.0.0'
  24. api 'com.github.bumptech.glide:glide:4.12.0'
  25. implementation 'androidx.exifinterface:exifinterface:1.2.0'
  26. api 'androidx.constraintlayout:constraintlayout:1.1.3'
  27. }