| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- apply plugin: 'com.android.library'
- android {
- compileSdkVersion rootProject.ext.compileSdkVersion
- defaultConfig {
- minSdkVersion rootProject.ext.minSdkVersion
- targetSdkVersion rootProject.ext.targetSdkVersion
- versionCode 1
- versionName "1.0"
- testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
- }
- buildTypes {
- release {
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
- }
- }
- }
- dependencies {
- api fileTree(include: ['*.jar'], dir: 'libs')
- api 'com.android.support:appcompat-v7:28.0.0'
- api 'com.android.support:design:28.0.0'
- api 'com.android.support.constraint:constraint-layout:1.1.3'
- api 'com.android.support:support-vector-drawable:28.0.0'
- //rx
- api 'io.reactivex.rxjava2:rxjava:2.0.7'
- api 'io.reactivex.rxjava2:rxandroid:2.0.1'
- //retrofit
- api 'com.squareup.retrofit2:retrofit:2.2.0'
- api 'com.squareup.retrofit2:converter-gson:2.2.0'
- api 'com.squareup.retrofit2:adapter-rxjava2:2.2.0'
- api 'com.squareup.okhttp3:logging-interceptor:3.6.0'
- api 'com.facebook.stetho:stetho-okhttp3:1.3.1'
- //rxpermissions
- api 'com.github.tbruyelle:rxpermissions:0.10.2'
- //rxlife
- //https://github.com/trello/RxLifecycle
- api 'com.trello.rxlifecycle2:rxlifecycle:2.0.1'
- api 'com.trello.rxlifecycle2:rxlifecycle-android:2.0.1'
- api 'com.trello.rxlifecycle2:rxlifecycle-components:2.0.1'
- //gson
- api 'com.google.code.gson:gson:2.8.0'
- //glide
- api 'com.github.bumptech.glide:glide:3.8.0'
- //PickerView
- api 'com.contrarywind:Android-PickerView:4.1.8'
- //DatePicker
- api 'com.github.prolificinteractive:material-calendarview:2.0.0'
- //refresh
- api 'com.scwang.smartrefresh:SmartRefreshLayout:1.1.0-alpha-21'
- api 'com.scwang.smartrefresh:SmartRefreshHeader:1.1.0-alpha-21'
- //EventBus
- api 'org.greenrobot:eventbus:3.0.0'
- }
|