贷款超市新仓库

build.gradle 1.6KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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. androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
  22. exclude group: 'com.android.support', module: 'support-annotations'
  23. })
  24. compile project(':common')
  25. compile "com.squareup.retrofit2:retrofit:$rootProject.ext.retrofitVersion"
  26. compile "com.squareup.retrofit2:converter-gson:$rootProject.ext.retrofitVersion"
  27. compile "com.google.code.gson:gson:$rootProject.ext.gsonVersion"
  28. annotationProcessor "com.github.Raizlabs.DBFlow:dbflow-processor:${rootProject.ext.dbflowVersion}"
  29. compile "com.github.Raizlabs.DBFlow:dbflow-core:${rootProject.ext.dbflowVersion}"
  30. compile "com.github.Raizlabs.DBFlow:dbflow:${rootProject.ext.dbflowVersion}"
  31. compile "net.qiujuer.genius:kit-reflect:$rootProject.ext.geniusVersion"
  32. compile "com.squareup.okhttp3:logging-interceptor:$rootProject.logging_interceptorVersion"
  33. testCompile 'junit:junit:4.12'
  34. compile 'com.liulishuo.filedownloader:library:1.6.5'
  35. compile 'com.github.franmontiel:PersistentCookieJar:v1.0.1'
  36. compile project(':lang')
  37. }