Laraver android 通用且一键式配置框架,1.0基于慕课网大神傅媛媛改写。

build.gradle 1.7KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. apply plugin: 'com.android.library'
  2. android {
  3. compileSdkVersion 25
  4. defaultConfig {
  5. minSdkVersion 19
  6. targetSdkVersion 25
  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. compile fileTree(include: ['*.jar'], dir: 'libs')
  20. androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
  21. exclude group: 'com.android.support', module: 'support-annotations'
  22. })
  23. testCompile 'junit:junit:4.12'
  24. compile project(':laraver-core')
  25. //RecyclerView依赖
  26. compile 'com.github.CymChad:BaseRecyclerViewAdapterHelper:2.9.22'
  27. //RecyclerView 分割线
  28. compile 'com.choices.divider:RecyclerView_Divider:1.0.0'
  29. //图片处理
  30. compile 'com.github.bumptech.glide:glide:4.0.0-RC0'
  31. compile 'com.github.bumptech.glide:okhttp3-integration:4.0.0-RC0@aar'
  32. annotationProcessor 'com.github.bumptech.glide:compiler:4.0.0-RC0'
  33. //Banner依赖
  34. compile 'com.bigkoo:convenientbanner:2.0.5'
  35. compile 'com.ToxicBakery.viewpager.transforms:view-pager-transforms:1.2.32@aar'
  36. //auto
  37. provided 'com.google.auto.value:auto-value:1.4.1'
  38. annotationProcessor "com.google.auto.value:auto-value:1.4.1"
  39. //ButterKnife
  40. annotationProcessor 'com.jakewharton:butterknife-compiler:8.6.0'
  41. //View动画依赖
  42. compile 'com.nineoldandroids:library:2.4.0'
  43. compile 'com.daimajia.easing:library:1.0.1@aar'
  44. compile 'com.daimajia.androidanimations:library:1.1.3@aar'
  45. }