贷款超市新仓库

build.gradle 1.8KB

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