12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- apply plugin: 'com.android.library'
- android {
- compileSdkVersion 25
- defaultConfig {
- minSdkVersion 19
- targetSdkVersion 25
- versionCode 1
- versionName "1.0"
- testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
- }
- buildTypes {
- release {
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
- }
- }
- }
- dependencies {
- compile fileTree(include: ['*.jar'], dir: 'libs')
- androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
- exclude group: 'com.android.support', module: 'support-annotations'
- })
- testCompile 'junit:junit:4.12'
- compile project(':laraver-core')
- //RecyclerView依赖
- compile 'com.github.CymChad:BaseRecyclerViewAdapterHelper:2.9.22'
- //RecyclerView 分割线
- compile 'com.choices.divider:RecyclerView_Divider:1.0.0'
- //图片处理
- compile 'com.github.bumptech.glide:glide:4.0.0-RC0'
- compile 'com.github.bumptech.glide:okhttp3-integration:4.0.0-RC0@aar'
- annotationProcessor 'com.github.bumptech.glide:compiler:4.0.0-RC0'
- //Banner依赖
- compile 'com.bigkoo:convenientbanner:2.0.5'
- compile 'com.ToxicBakery.viewpager.transforms:view-pager-transforms:1.2.32@aar'
- //auto
- provided 'com.google.auto.value:auto-value:1.4.1'
- annotationProcessor "com.google.auto.value:auto-value:1.4.1"
- //ButterKnife
- annotationProcessor 'com.jakewharton:butterknife-compiler:8.6.0'
- //View动画依赖
- compile 'com.nineoldandroids:library:2.4.0'
- compile 'com.daimajia.easing:library:1.0.1@aar'
- compile 'com.daimajia.androidanimations:library:1.1.3@aar'
- }
|