贷款超市新仓库

build.gradle 2.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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 2
  9. versionName "2.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 "com.android.support:appcompat-v7:$rootProject.ext.supportVersion"
  25. compile "com.android.support:recyclerview-v7:$rootProject.ext.supportVersion"
  26. compile "com.android.support:design:$rootProject.ext.supportVersion"
  27. compile "net.qiujuer.genius:ui:$rootProject.ext.geniusVersion"
  28. compile "net.qiujuer.genius:res:$rootProject.ext.geniusVersion"
  29. compile "de.hdodenhof:circleimageview:$rootProject.ext.circleimageviewVersion"
  30. compile "com.github.bumptech.glide:glide:$rootProject.ext.glideVersion"
  31. compile "com.jakewharton:butterknife:$rootProject.ext.butterknifeVersion"
  32. compile "net.qiujuer.genius:kit-handler:$rootProject.ext.geniusVersion"
  33. compile "com.google.code.gson:gson:$rootProject.ext.gsonVersion"
  34. // 空气面板
  35. compile "net.qiujuer.widget:airpanel:$rootProject.ext.airpanelVersion"
  36. // Lame 录音 MP3 转码器
  37. compile "net.qiujuer.lame:lame:$rootProject.ext.lameVersion"
  38. annotationProcessor "com.jakewharton:butterknife-compiler:$rootProject.ext.butterknifeVersion"
  39. compile project(':lang')
  40. compile 'com.android.support.constraint:constraint-layout:1.0.2'
  41. testCompile 'junit:junit:4.12'
  42. // compile 'com.umeng.analytics:analytics:latest.integration'
  43. compile 'com.zhy:autolayout:1.4.5'
  44. //加载框
  45. compile 'com.github.gittjy:LoadingDialog:1.0.2'
  46. }