build.gradle 1.0 KB

123456789101112131415161718192021222324252627282930313233
  1. apply plugin: 'com.android.library'
  2. android {
  3. compileSdkVersion 27
  4. defaultConfig {
  5. //applicationId "com.lzx.demo"
  6. minSdkVersion 16
  7. targetSdkVersion 27
  8. versionCode 1
  9. versionName "1.0"
  10. vectorDrawables.useSupportLibrary = true
  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(include: ['*.jar'], dir: 'libs')
  21. implementation 'androidx.cardview:cardview:1.0.0'
  22. implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
  23. implementation 'com.github.bumptech.glide:glide:4.3.1'
  24. annotationProcessor 'com.github.bumptech.glide:compiler:4.3.1'
  25. implementation project(path: ':LRecyclerview_library')
  26. implementation 'com.nineoldandroids:library:2.4.0'
  27. //implementation 'com.github.jdsjlzx:banner:1.0.0'
  28. implementation 'com.google.android.material:material:1.0.0'
  29. }