贷款超市新仓库

build.gradle 2.0KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. apply plugin: 'com.android.library'
  2. android {
  3. compileSdkVersion 28
  4. defaultConfig {
  5. minSdkVersion 19
  6. targetSdkVersion 28
  7. versionCode 1
  8. versionName "1.0"
  9. testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
  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(include: ['*.jar'], dir: 'libs')
  20. implementation 'com.android.support.constraint:constraint-layout:1.1.0'
  21. androidTestImplementation('com.android.support.test.espresso:espresso-core:2.2.2', {
  22. exclude group: 'com.android.support', module: 'support-annotations'
  23. })
  24. implementation project(':common')
  25. implementation 'com.android.support:support-v4:28.0.0'
  26. implementation "com.squareup.retrofit2:retrofit:$rootProject.ext.retrofitVersion"
  27. implementation "com.squareup.retrofit2:converter-gson:$rootProject.ext.retrofitVersion"
  28. implementation "com.google.code.gson:gson:$rootProject.ext.gsonVersion"
  29. annotationProcessor "com.github.Raizlabs.DBFlow:dbflow-processor:${rootProject.ext.dbflowVersion}"
  30. implementation "com.github.Raizlabs.DBFlow:dbflow-core:${rootProject.ext.dbflowVersion}"
  31. implementation "com.github.Raizlabs.DBFlow:dbflow:${rootProject.ext.dbflowVersion}"
  32. implementation "net.qiujuer.genius:kit-reflect:$rootProject.ext.geniusVersion"
  33. implementation "com.squareup.okhttp3:logging-interceptor:$rootProject.logging_interceptorVersion"
  34. testImplementation 'junit:junit:4.12'
  35. implementation 'com.liulishuo.filedownloader:library:1.6.5'
  36. implementation 'com.github.bumptech.glide:glide:3.7.0'
  37. implementation 'com.github.franmontiel:PersistentCookieJar:v1.0.1'
  38. implementation project(':lang')
  39. implementation 'io.reactivex.rxjava2:rxjava:2.1.6'
  40. implementation 'io.reactivex.rxjava2:rxandroid:2.0.1'
  41. implementation 'com.squareup.retrofit2:adapter-rxjava2:2.3.0'
  42. }