build.gradle 869 B

1234567891011121314151617181920212223242526272829303132
  1. apply plugin: 'com.android.library'
  2. android {
  3. compileSdkVersion 28
  4. buildToolsVersion '28.0.3'
  5. defaultConfig {
  6. minSdkVersion 14
  7. targetSdkVersion 28
  8. versionCode 1
  9. versionName "1.0.0"
  10. }
  11. buildTypes {
  12. release {
  13. minifyEnabled false
  14. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  15. }
  16. }
  17. }
  18. dependencies {
  19. implementation fileTree(dir: 'libs', include: ['*.jar'])
  20. testImplementation 'junit:junit:4.12'
  21. implementation project(':base')
  22. api 'androidx.constraintlayout:constraintlayout:2.0.0-beta2'
  23. api project(':wheel')
  24. api 'com.google.android.material:material:1.1.0-alpha09'
  25. //implementation 'com.github.Aspsine:SwipeToLoadLayout:1.0.3'
  26. api 'in.srain.cube:ultra-ptr:1.0.11'
  27. api 'com.haibin:calendarview:3.6.1'
  28. }