1234567891011121314151617181920212223242526272829303132333435363738394041 |
- apply plugin: 'com.android.application'
- android {
- compileSdkVersion 27
- defaultConfig {
- applicationId "com.sunzee.cleanMachine"
- minSdkVersion 14
- targetSdkVersion 27
- versionCode 1
- }
- }
- ext {
- androidutilsVersion = '1.0.6'
- appcompatVersion = '27.1.0'
- butterknifeVersion = '8.4.0'
- retrofitVersion = '2.3.0'
- logginginterceptor = '3.9.1'
- rxjavaVersion = '2.1.11'
- rxandroidVersion = "2.0.2"
- }
- dependencies {
- implementation fileTree(include: ['*.jar'], dir: 'libs')
- implementation "com.wuxiaolong.androidutils:androidutils:$androidutilsVersion"
- //noinspection GradleCompatible,GradleDependency
- implementation "com.android.support:appcompat-v7:$appcompatVersion"
- //黄油刀
- annotationProcessor "com.jakewharton:butterknife-compiler:$butterknifeVersion"
- //retrofit2
- implementation "com.squareup.retrofit2:retrofit:$retrofitVersion"
- implementation "com.squareup.okhttp3:logging-interceptor:$logginginterceptor"
- implementation "com.squareup.retrofit2:converter-gson:$retrofitVersion"
- implementation "com.squareup.retrofit2:adapter-rxjava2:$retrofitVersion"
- //rxjava
- implementation "io.reactivex.rxjava2:rxandroid:$rxandroidVersion"
- implementation "io.reactivex.rxjava2:rxjava:$rxjavaVersion"
- implementation "com.android.support:design:27.1.1"
- implementation 'com.android.support.constraint:constraint-layout:1.1.3'
- }
|