对框架的使用,来自大神傅媛媛

build.gradle 1.1KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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. compile 'com.android.support:appcompat-v7:25+'
  21. testImplementation 'junit:junit:4.12'
  22. androidTestImplementation 'com.android.support.test:runner:1.0.1'
  23. androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1'
  24. //Banner依赖
  25. compile 'com.bigkoo:convenientbanner:2.0.5'
  26. compile 'com.ToxicBakery.viewpager.transforms:view-pager-transforms:1.2.32@aar'
  27. //RecyclerView依赖
  28. compile 'com.github.CymChad:BaseRecyclerViewAdapterHelper:2.9.22'
  29. //RecyclerView 分割线
  30. compile 'com.choices.divider:RecyclerView_Divider:1.0.0'
  31. implementation project(':laraver-core')
  32. }